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.
18 lines (16 loc) • 513 B
text/typescript
import Screen from './Screen.js';
/**
* ScreenDetailed.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/ScreenDetailed
*/
export default class ScreenDetailed extends Screen {
public readonly availLeft: number = 0;
public readonly availTop: number = 0;
public readonly left: number = 0;
public readonly top: number = 0;
public readonly isPrimary: boolean = true;
public readonly isInternal: boolean = true;
public readonly devicePixelRatio: number = 1;
public readonly label: string = '';
}