mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 01:03:57 +00:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import type { Theme } from "@types";
|
|
import { db } from "../level";
|
|
import { levelKeys } from "./keys";
|
|
|
|
export const themesSublevel = db.sublevel<string, Theme>(levelKeys.themes, {
|
|
valueEncoding: "json",
|
|
});
|