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