19 lines
518 B
TypeScript
19 lines
518 B
TypeScript
|
|
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
|
||
|
|
import CSSConditionRule from './CSSConditionRule.js';
|
||
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
||
|
|
/**
|
||
|
|
* CSSRule interface.
|
||
|
|
*/
|
||
|
|
export default class CSSSupportsRule extends CSSConditionRule {
|
||
|
|
[PropertySymbol.type]: CSSRuleTypeEnum;
|
||
|
|
[PropertySymbol.rulePrefix]: string;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get type(): CSSRuleTypeEnum;
|
||
|
|
/**
|
||
|
|
* @override
|
||
|
|
*/
|
||
|
|
get cssText(): string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=CSSSupportsRule.d.ts.map
|