dmclc
Version:
Dolphin Minecraft Launcher Core
22 lines (21 loc) • 439 B
TypeScript
import { Library } from "../../schemas.js";
export type InstallerProfileNew = {
data: {
[index: string]: {
"client": string;
"server": string;
};
};
processors: Processor[];
libraries: Library[];
};
type Processor = {
sides: ["client" | "server"];
jar: string;
classpath: string[];
args: string[];
outputs: {
[index: string]: string;
};
};
export {};