mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-22 12:16:21 +03:00
Merge pull request #67 from RynerNO/master
fix async modifier cannot be used in an ambient context error
This commit is contained in:
commit
c5a0a6c72c
1 changed files with 2 additions and 2 deletions
4
index.d.ts
vendored
4
index.d.ts
vendored
|
@ -209,8 +209,8 @@ declare module "minecraft-launcher-core" {
|
||||||
protected printVersion(): void;
|
protected printVersion(): void;
|
||||||
protected createRootDirectory(): void;
|
protected createRootDirectory(): void;
|
||||||
protected createGameDirectory(): void;
|
protected createGameDirectory(): void;
|
||||||
protected async extractPackage(): void;
|
protected extractPackage(): Promise<void>;
|
||||||
protected async getModifyJson(): any;
|
protected getModifyJson(): Promise<any>;
|
||||||
protected startMinecraft(launchArguments: string[]): ChildProcessWithoutNullStreams;
|
protected startMinecraft(launchArguments: string[]): ChildProcessWithoutNullStreams;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue