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

17 line
396 B

  1. import CSSRule from '../CSSRule';
  2. import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration';
  3. /**
  4. * CSSRule interface.
  5. */
  6. export default class CSSFontFaceRule extends CSSRule {
  7. readonly type: import("../CSSRuleTypeEnum").default;
  8. _cssText: string;
  9. private _style;
  10. /**
  11. * Returns style.
  12. *
  13. * @returns Style.
  14. */
  15. get style(): CSSStyleDeclaration;
  16. }