mirror of
https://github.com/electron/electron.git
synced 2026-01-28 08:48:14 -05:00
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
const {EventEmitter} = require('events')
|
|
const {Notification} = process.atomBinding('notification')
|
|
|
|
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype)
|
|
|
|
module.exports = Notification
|