版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CSSKeyframeRule.d.ts 527 B

пре 1 година
1234567891011121314151617181920212223
  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. }