electron/lib/browser/api/notification.js

8 lines
167 B
JavaScript
Raw Normal View History

2020-03-20 20:28:31 +00:00
'use strict';
2020-03-20 20:28:31 +00:00
const { Notification, isSupported } = process.electronBinding('notification');
2020-03-20 20:28:31 +00:00
Notification.isSupported = isSupported;
2017-05-30 10:27:24 +00:00
2020-03-20 20:28:31 +00:00
module.exports = Notification;