mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 09:13:57 +00:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import type { LocalNotification } from "@types";
|
|
|
|
import { db } from "../level";
|
|
import { levelKeys } from "./keys";
|
|
|
|
export const localNotificationsSublevel = db.sublevel<
|
|
string,
|
|
LocalNotification
|
|
>(levelKeys.localNotifications, {
|
|
valueEncoding: "json",
|
|
});
|