mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
12 lines
228 B
JavaScript
12 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
|