mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-22 12:16:21 +03:00
Merge branch 'master' into Split-large-MCLCore-launch-into-multiple-methods
This commit is contained in:
commit
cc6d1f5dc1
1 changed files with 2 additions and 2 deletions
4
index.d.ts
vendored
4
index.d.ts
vendored
|
@ -205,13 +205,13 @@ declare module "minecraft-launcher-core" {
|
||||||
import { ChildProcessWithoutNullStreams } from 'child_process'
|
import { ChildProcessWithoutNullStreams } from 'child_process'
|
||||||
|
|
||||||
export class Client extends EventEmitter {
|
export class Client extends EventEmitter {
|
||||||
launch(options: ILauncherOptions): ChildProcessWithoutNullStreams | null;
|
launch(options: ILauncherOptions): Promise<ChildProcessWithoutNullStreams | null>;
|
||||||
protected printVersion(): void;
|
protected printVersion(): void;
|
||||||
protected createRootDirectory(): void;
|
protected createRootDirectory(): void;
|
||||||
protected createGameDirectory(): void;
|
protected createGameDirectory(): void;
|
||||||
protected async extractPackage(): void;
|
protected async extractPackage(): void;
|
||||||
protected async getModifyJson(): any;
|
protected async getModifyJson(): any;
|
||||||
protected startMinecraft(launchArguments: string[]): ChildProcessWithoutNullStreams;
|
protected startMinecraft(launchArguments: string[]): Promise<ChildProcessWithoutNullStreams>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Authenticator: IAuthenticator;
|
export const Authenticator: IAuthenticator;
|
||||||
|
|
Loading…
Add table
Reference in a new issue