1 | import * as NodeNotifier from 'node-notifier';
|
2 | export interface Notification extends NodeNotifier.Notification {
|
3 | force?: boolean;
|
4 | }
|
5 | export declare function notify(notification?: Notification, callback?: NodeNotifier.NotificationCallback): NodeNotifier.NodeNotifier | undefined;
|