electron/lib/browser/api/notification.ts

6 lines
188 B
TypeScript
Raw Normal View History

const { Notification: ElectronNotification, isSupported } = process.electronBinding('notification');
ElectronNotification.isSupported = isSupported;
export default ElectronNotification;