codigo0/node_modules/happy-dom/lib/css/rules/CSSKeyframeRule.d.ts

33 lines
785 B
TypeScript
Raw Normal View History

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