UNPKG

electron-multi-monitor

Version:

Create multi monitor applications using web development

13 lines (12 loc) 407 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MainMonitor = void 0; const Monitor_1 = require("./Monitor"); class MainMonitor extends Monitor_1.Monitor { constructor(numberOfOthersToOpen, options) { super(options); this.isMain = true; this.numberOfOthersToOpen = numberOfOthersToOpen; } } exports.MainMonitor = MainMonitor;