2017-12-13 15:23:50 +00:00
|
|
|
import { LoginParameters } from './classes/LoginParameters';
|
|
|
|
|
import { LoginResponse } from './classes/LoginResponse';
|
2017-12-14 01:21:18 +00:00
|
|
|
import { ClientEvents } from './classes/ClientEvents';
|
2017-12-14 02:06:28 +00:00
|
|
|
import { BotOptionFlags } from './enums/BotOptionFlags';
|
2017-12-13 15:23:50 +00:00
|
|
|
export declare class LoginHandler {
|
2017-12-14 01:21:18 +00:00
|
|
|
private clientEvents;
|
2017-12-14 02:06:28 +00:00
|
|
|
private options;
|
2017-12-13 15:23:50 +00:00
|
|
|
static GenerateMAC(): string;
|
2017-12-14 02:06:28 +00:00
|
|
|
constructor(ce: ClientEvents, options: BotOptionFlags);
|
2017-12-13 15:23:50 +00:00
|
|
|
Login(params: LoginParameters): Promise<LoginResponse>;
|
|
|
|
|
}
|