Files
hydra/src/main/events/notifications/get-local-notifications.ts

9 lines
276 B
TypeScript

import { registerEvent } from "../register-event";
import { LocalNotificationManager } from "@main/services";
const getLocalNotifications = async () => {
return LocalNotificationManager.getNotifications();
};
registerEvent("getLocalNotifications", getLocalNotifications);