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

9 lines
289 B
TypeScript

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