diff --git a/index.d.ts b/index.d.ts index 652e293..3353a8e 100644 --- a/index.d.ts +++ b/index.d.ts @@ -206,6 +206,12 @@ declare module "minecraft-launcher-core" { export class Client extends EventEmitter { launch(options: ILauncherOptions): ChildProcessWithoutNullStreams | null; + protected printVersion(): void; + protected createRootDirectory(): void; + protected createGameDirectory(): void; + protected async extractPackage(): void; + protected async getModifyJson(): any; + protected startMinecraft(launchArguments: string[]): ChildProcessWithoutNullStreams; } export const Authenticator: IAuthenticator;