33 lines
785 B
TypeScript
33 lines
785 B
TypeScript
|
|
import CSSRule from '../CSSRule.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration.js';
|
||
|
|
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
|
||
|
|
/**
|
||
|
|
* CSSKeyframeRule interface.
|
||
|
|
*/
|
||
|
|
export default class CSSKeyframeRule extends CSSRule {
|
||
|
|
#private;
|
||
|
|
[PropertySymbol.keyText]: string;
|
||
|
|
[PropertySymbol.cssText]: string;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get type(): CSSRuleTypeEnum;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get cssText(): string;
|
||
|
|
/**
|
||
|
|
* Returns style.
|
||
|
|
*
|
||
|
|
* @returns Style.
|
||
|
|
*/
|
||
|
|
get style(): CSSStyleDeclaration;
|
||
|
|
/**
|
||
|
|
* Returns key text.
|
||
|
|
*
|
||
|
|
* @returns Key text.
|
||
|
|
*/
|
||
|
|
get keyText(): string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=CSSKeyframeRule.d.ts.map
|