notification.ts 207 B

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