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.
17 lines • 445 B
TypeScript
import CSSRule from '../CSSRule.cjs';
import CSSRuleTypeEnum from '../CSSRuleTypeEnum.cjs';
/**
* CSSRule interface.
*/
export default class CSSContainerRule extends CSSRule {
readonly type = CSSRuleTypeEnum.containerRule;
readonly cssRules: CSSRule[];
readonly conditionText = "";
/**
* Returns css text.
*
* @returns CSS text.
*/
get cssText(): string;
}
//# sourceMappingURL=CSSContainerRule.d.ts.map