mirror of
https://github.com/electron/electron.git
synced 2026-01-28 00:38:35 -05:00
8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
'use strict';
|
|
|
|
const { Notification, isSupported } = process.electronBinding('notification');
|
|
|
|
Notification.isSupported = isSupported;
|
|
|
|
module.exports = Notification;
|