mcgrizz/types/fabric.ts

20 lines
300 B
TypeScript

export type FabricGame = {
version: string;
stable: boolean;
};
export type FabricInstaller = {
url: string;
maven: string;
version: string;
stable: boolean;
};
export type FabricLoader = {
separator: string;
build: number;
maven: string;
version: string;
stable: boolean;
};