版博士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.

пре 1 година
123456789101112131415161718192021222324
  1. import CSSRule from '../CSSRule';
  2. import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration';
  3. /**
  4. * CSSRule interface.
  5. */
  6. export default class CSSStyleRule extends CSSRule {
  7. readonly type: import("../CSSRuleTypeEnum").default;
  8. readonly selectorText = "";
  9. readonly styleMap: Map<any, any>;
  10. _cssText: string;
  11. private _style;
  12. /**
  13. * Returns style.
  14. *
  15. * @returns Style.
  16. */
  17. get style(): CSSStyleDeclaration;
  18. /**
  19. * Returns css text.
  20. *
  21. * @returns CSS text.
  22. */
  23. get cssText(): string;
  24. }