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