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.
21 lines • 606 B
TypeScript
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.js';
import CSSConditionRule from './CSSConditionRule.js';
import * as PropertySymbol from '../../PropertySymbol.js';
/**
* CSSContainerRule interface.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSContainerRule
*/
export default class CSSContainerRule extends CSSConditionRule {
[]: CSSRuleTypeEnum;
[]: string;
/**
* @override
*/
get type(): CSSRuleTypeEnum;
/**
* @override
*/
get cssText(): string;
}
//# sourceMappingURL=CSSContainerRule.d.ts.map