UNPKG

happy-dom-without-node

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