notification.ts 208 B

12345678
  1. const {
  2. Notification: ElectronNotification,
  3. isSupported
  4. } = process._linkedBinding('electron_browser_notification');
  5. ElectronNotification.isSupported = isSupported;
  6. export default ElectronNotification;