electron/lib/browser/api/notification.js

7 lines
202 B
JavaScript
Raw Normal View History

const {EventEmitter} = require('events')
const {Notification} = process.atomBinding('notification')
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype)
module.exports = Notification