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.
25 lines • 654 B
TypeScript
import CSSRule from '../CSSRule.cjs';
import * as PropertySymbol from '../../PropertySymbol.cjs';
import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration.cjs';
/**
* CSSRule interface.
*/
export default class CSSKeyframeRule extends CSSRule {
readonly type: import("../CSSRuleTypeEnum.cjs").default;
readonly keyText: string;
[ ]: string;
/**
* Returns style.
*
* @returns Style.
*/
get style(): CSSStyleDeclaration;
/**
* Returns css text.
*
* @returns CSS text.
*/
get cssText(): string;
}
//# sourceMappingURL=CSSKeyframeRule.d.ts.map