版博士V2.0程序
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.
 
 
 
 

24 rader
527 B

  1. import CSSRule from '../CSSRule';
  2. import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration';
  3. /**
  4. * CSSRule interface.
  5. */
  6. export default class CSSKeyframeRule extends CSSRule {
  7. readonly type: import("../CSSRuleTypeEnum").default;
  8. readonly keyText: string;
  9. _cssText: string;
  10. private _style;
  11. /**
  12. * Returns style.
  13. *
  14. * @returns Style.
  15. */
  16. get style(): CSSStyleDeclaration;
  17. /**
  18. * Returns css text.
  19. *
  20. * @returns CSS text.
  21. */
  22. get cssText(): string;
  23. }