|
- "use strict";
- 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.js.map
|