forked from distok/asarfuckery
8 lines
No EOL
266 B
JavaScript
8 lines
No EOL
266 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;
|
|
//# sourceMappingURL=view.js.map
|