late-java-core
Version:
A library starting minecraft game NW.js and Electron.js
11 lines (10 loc) • 505 B
TypeScript
/**
* @author Luuxis
* Luuxis License v1.0 (voir fichier LICENSE pour les détails en FR/EN)
*/
declare function login(username: string, password?: string): Promise<any>;
declare function refresh(acc: any): Promise<any>;
declare function validate(acc: any): Promise<boolean>;
declare function signout(acc: any): Promise<boolean>;
declare function ChangeAuthApi(url: string): void;
export { login as login, refresh as refresh, validate as validate, signout as signout, ChangeAuthApi as ChangeAuthApi };