Update index.d.ts

This commit is contained in:
Just a Badly Drawn TABS Dude 2021-01-19 12:59:04 +02:00 committed by GitHub
parent 74411441d6
commit da1b77a585
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
index.d.ts vendored
View file

@ -205,7 +205,7 @@ declare module "minecraft-launcher-core" {
import { ChildProcessWithoutNullStreams } from 'child_process'
export class Client extends EventEmitter {
launch(options: ILauncherOptions): ChildProcessWithoutNullStreams | null;
launch(options: ILauncherOptions): Promise<ChildProcessWithoutNullStreams | null>;
}
export const Authenticator: IAuthenticator;