happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
34 lines • 793 B
TypeScript
import * as PropertySymbol from '../../PropertySymbol.js';
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
import CSSGroupingRule from './CSSGroupingRule.js';
/**
* CSSScopeRule interface.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSScopeRule
*/
export default class CSSScopeRule extends CSSGroupingRule {
[]: string;
[]: string;
[]: string;
/**
* @override
*/
get type(): CSSRuleTypeEnum;
/**
* @override
*/
get cssText(): string;
/**
* Returns start.
*
* @returns Start.
*/
get start(): string;
/**
* Returns end.
*
* @returns End.
*/
get end(): string;
}
//# sourceMappingURL=CSSScopeRule.d.ts.map