UNPKG

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.

14 lines 281 B
/** * */ export default class Screen { constructor() { this.width = 1024; this.height = 768; this.availWidth = 1024; this.availHeight = 768; this.colorDepth = 24; this.pixelDepth = 24; } } //# sourceMappingURL=Screen.js.map