mirror of
https://github.com/electron/electron.git
synced 2026-01-28 00:38:35 -05:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
'use strict';
|
|
|
|
const { EventEmitter } = require('events');
|
|
const { View } = process.electronBinding('view');
|
|
|
|
Object.setPrototypeOf(View.prototype, EventEmitter.prototype);
|
|
|
|
View.prototype._init = function () {
|
|
};
|
|
|
|
module.exports = View;
|