electron/lib/browser/api/notification.js
2020-03-31 11:42:32 -07:00

7 lines
167 B
JavaScript

'use strict';
const { Notification, isSupported } = process.electronBinding('notification');
Notification.isSupported = isSupported;
module.exports = Notification;