Files
hydra/src/main/level/sublevels/local-notifications.ts

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",
});