版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

25 строки
564 B

  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. }