mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-20 01:33:56 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import type { Game } from "@types";
|
|
|
|
import { db } from "../level";
|
|
import { levelKeys } from "./keys";
|
|
|
|
export const gamesSublevel = db.sublevel<string, Game>(levelKeys.games, {
|
|
valueEncoding: "json",
|
|
});
|