electron/lib/browser/api/screen.js

7 lines
178 B
JavaScript
Raw Normal View History

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