mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-20 09:43:57 +00:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { registerEvent } from "../register-event";
|
|
import { LocalNotificationManager } from "@main/services";
|
|
|
|
const getLocalNotifications = async () => {
|
|
return LocalNotificationManager.getNotifications();
|
|
};
|
|
|
|
registerEvent("getLocalNotifications", getLocalNotifications);
|