electron/lib/browser/api/view.js
2018-09-14 14:57:01 +10:00

11 lines
228 B
JavaScript

'use strict'
const { EventEmitter } = require('events')
const { View } = process.atomBinding('view')
Object.setPrototypeOf(View.prototype, EventEmitter.prototype)
View.prototype._init = function () {
}
module.exports = View