UNPKG

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 384 B
import Screen from './Screen.js'; /** * ScreenDetailed. * * @see https://developer.mozilla.org/en-US/docs/Web/API/ScreenDetailed */ export default class ScreenDetailed extends Screen { availLeft = 0; availTop = 0; left = 0; top = 0; isPrimary = true; isInternal = true; devicePixelRatio = 1; label = ''; } //# sourceMappingURL=ScreenDetailed.js.map