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