UNPKG

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
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 { #private; readonly type: import("../CSSRuleTypeEnum.cjs").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