mcgrizz/types/mcgrizzconf.ts
2023-10-05 10:27:52 -06:00

14 lines
281 B
TypeScript

import { ModrinthProject } from "../lib/modrinth.ts";
export type Loader = "forge" | "fabric" | "vanilla" | "unset";
export type MCGrizzConf = {
loader: Loader;
version: string;
mods?: {
source: "modrinth";
details: ModrinthProject;
jarName?: string;
}[];
};