UNPKG

electron-notifications

Version:

A node module for sending notifications in electron applications

8 lines (5 loc) 185 B
const Notification = require('../notification') const { ipcRenderer } = require('electron') ipcRenderer.on('setup', (event, title, options) => { new Notification(title, options) })