electron/lib/browser/api/screen.js

7 lines
186 B
JavaScript
Raw Normal View History

const {EventEmitter} = require('events')
2016-08-02 11:38:35 +00:00
const {screen, Screen} = process.atomBinding('screen')
2016-01-12 02:40:23 +00:00
2016-08-02 11:38:35 +00:00
Object.setPrototypeOf(Screen.prototype, EventEmitter.prototype)
2016-01-12 02:40:23 +00:00
module.exports = screen