happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
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 {
[]: string;
[]: 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