mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 16:53:57 +00:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
import type { GameStats } from "@types";
|
|
|
|
import { db } from "../level";
|
|
import { levelKeys } from "./keys";
|
|
|
|
export const gamesStatsCacheSublevel = db.sublevel<
|
|
string,
|
|
GameStats & { updatedAt: number }
|
|
>(levelKeys.gameStatsCache, {
|
|
valueEncoding: "json",
|
|
});
|