UNPKG

powerballoon

Version:

Windows balloon notification using PowerShell.

15 lines (13 loc) 283 B
declare interface ICallback{ onActivated?(): void, onDismissed?(): void } declare interface IOption { title?: string, message?: string, ico?: string, type?: number, showTime?: number, callback?: ICallback } export default function (option?: IOption): Promise<void>;