6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
|
const { Notification: ElectronNotification, isSupported } = process.electronBinding('notification');
|
||
|
|
||
|
ElectronNotification.isSupported = isSupported;
|
||
|
|
||
|
export default ElectronNotification;
|