(text: string)
| 54 | } |
| 55 | |
| 56 | notify(text: string) { |
| 57 | if (text.length > 0) { |
| 58 | new Notification(constants.appName + " " + version, { |
| 59 | body: text, |
| 60 | }); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | toast(text: string, force: boolean = false) { |
| 65 | if (force || config.get("toastTip")) { |