mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import type { Download } from "@types";
|
|
|
|
import { db } from "../level";
|
|
import { levelKeys } from "./keys";
|
|
|
|
export const downloadsSublevel = db.sublevel<string, Download>(
|
|
levelKeys.downloads,
|
|
{
|
|
valueEncoding: "json",
|
|
}
|
|
);
|