Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- import CSSRule from '../CSSRule';
- import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration';
- /**
- * CSSRule interface.
- */
- export default class CSSKeyframeRule extends CSSRule {
- readonly type: import("../CSSRuleTypeEnum").default;
- readonly keyText: string;
- _cssText: string;
- private _style;
- /**
- * Returns style.
- *
- * @returns Style.
- */
- get style(): CSSStyleDeclaration;
- /**
- * Returns css text.
- *
- * @returns CSS text.
- */
- get cssText(): string;
- }
|