mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-22 12:16:21 +03:00
fix async modifier cannot be used in an ambient context. error
This commit is contained in:
parent
e6578ac7d9
commit
b5f790f4e7
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