mirror of
https://github.com/electron/electron.git
synced 2026-01-28 16:58:21 -05:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
'use strict'
|
|
|
|
const {EventEmitter} = require('events')
|
|
const {View} = process.atomBinding('view')
|
|
|
|
Object.setPrototypeOf(View.prototype, EventEmitter.prototype)
|
|
|
|
module.exports = View
|