mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-26 12:21:03 +00:00
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
import { registerEvent } from "../register-event";
|
|
import { LocalNotificationManager } from "@main/services";
|
|
|
|
const clearAllLocalNotifications = async () => {
|
|
await LocalNotificationManager.clearAll();
|
|
};
|
|
|
|
registerEvent("clearAllLocalNotifications", clearAllLocalNotifications);
|