electron/lib/browser/api/view.js

12 lines
232 B
JavaScript
Raw Normal View History

2018-05-07 05:52:25 +00:00
'use strict'
2018-09-13 16:10:51 +00:00
const { EventEmitter } = require('events')
const { View } = process.electronBinding('view')
2018-05-07 05:52:25 +00:00
Object.setPrototypeOf(View.prototype, EventEmitter.prototype)
View.prototype._init = function () {
}
2018-05-07 05:52:25 +00:00
module.exports = View