Files
hydra/src/main/events/notifications/clear-all-local-notifications.ts

9 lines
282 B
TypeScript

import { registerEvent } from "../register-event";
import { LocalNotificationManager } from "@main/services";
const clearAllLocalNotifications = async () => {
await LocalNotificationManager.clearAll();
};
registerEvent("clearAllLocalNotifications", clearAllLocalNotifications);