28 lines
722 B
TypeScript
28 lines
722 B
TypeScript
|
|
import CSSRule from '../CSSRule.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
import CSSStyleDeclaration from '../declaration/CSSStyleDeclaration.js';
|
||
|
|
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
|
||
|
|
/**
|
||
|
|
* CSSFontFaceRule interface.
|
||
|
|
*
|
||
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSFontFaceRule
|
||
|
|
*/
|
||
|
|
export default class CSSFontFaceRule extends CSSRule {
|
||
|
|
#private;
|
||
|
|
[PropertySymbol.cssText]: string;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get type(): CSSRuleTypeEnum;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get cssText(): string;
|
||
|
|
/**
|
||
|
|
* Returns style.
|
||
|
|
*
|
||
|
|
* @returns Style.
|
||
|
|
*/
|
||
|
|
get style(): CSSStyleDeclaration;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=CSSFontFaceRule.d.ts.map
|