7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
'use strict';
|
|
|
|
const { Notification, isSupported } = process.electronBinding('notification');
|
|
|
|
Notification.isSupported = isSupported;
|
|
|
|
module.exports = Notification;
|