@kiwigdc/kiwilaunch
Version:
Launch minecraft client
14 lines (13 loc) • 352 B
TypeScript
import { Launch } from "./Launch";
import { ProcessProfile } from "./ProcessProfile";
export declare class ProcessManager {
launch: Launch;
profile: ProcessProfile;
private process;
constructor(launch: Launch, profile: ProcessProfile);
Launch(): Promise<any>;
/**
* getProcess
*/
getProcess(): any;
}