mirror of
https://github.com/electron/electron.git
synced 2026-02-10 15:15:43 -05:00
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
const EventEmitter = require('events').EventEmitter
|
|
const {autoUpdater, AutoUpdater} = process.atomBinding('auto_updater')
|
|
|
|
Object.setPrototypeOf(AutoUpdater.prototype, EventEmitter.prototype)
|
|
|
|
module.exports = autoUpdater
|