asarfuckery/electronasar/canary/browser/api/notification.js
2019-06-16 22:19:06 +02:00

7 lines
No EOL
319 B
JavaScript

'use strict';
const { EventEmitter } = require('events');
const { Notification, isSupported } = process.electronBinding('notification');
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype);
Notification.isSupported = isSupported;
module.exports = Notification;
//# sourceMappingURL=notification.js.map