23 lines
791 B
TypeScript
23 lines
791 B
TypeScript
import { LoginParameters } from './classes/LoginParameters';
|
|
import { Region } from './classes/Region';
|
|
import { ClientEvents } from './classes/ClientEvents';
|
|
import { ClientCommands } from './classes/ClientCommands';
|
|
import { BotOptionFlags } from './enums/BotOptionFlags';
|
|
export declare class Bot {
|
|
private loginParams;
|
|
private currentRegion;
|
|
private agent;
|
|
private ping;
|
|
private pingNumber;
|
|
private lastSuccessfulPing;
|
|
private circuitSubscription;
|
|
private options;
|
|
clientEvents: ClientEvents;
|
|
clientCommands: ClientCommands;
|
|
constructor(login: LoginParameters, options: BotOptionFlags);
|
|
login(): Promise<{}>;
|
|
changeRegion(region: Region): Promise<{}>;
|
|
close(): Promise<{}>;
|
|
connectToSim(): Promise<{}>;
|
|
}
|