gmll
Version:
A generic launcher core for building custom launchers
8 lines (7 loc) • 569 B
TypeScript
import { Instance } from "../../../index";
import { VersionManifest } from "../../../types";
import { File } from "gfsl";
export declare function importGmllLink(url: string): Promise<VersionManifest>;
export declare function importGmllLink(url: string, name: string): Promise<Instance>;
export declare function importCurseForge(instance: Instance, urlorFile: string | File, forge?: string | File): Promise<Instance>;
export declare function importModpack(this: Instance, urlorFile: string | File, type: "curseforge" | "gmll", forge?: string | File): Promise<Instance>;