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 • 370 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
*
*/
class Screen {
constructor() {
this.width = 1024;
this.height = 768;
this.availWidth = 1024;
this.availHeight = 768;
this.colorDepth = 24;
this.pixelDepth = 24;
}
}
exports.default = Screen;
//# sourceMappingURL=Screen.cjs.map
;