TeaSpeak-Client/imports/shared-app/clientservice/index.d.ts

22 lines
623 B
TypeScript
Raw Normal View History

2021-02-07 14:01:37 -05:00
export declare class ClientServices {
private connection;
private sessionInitialized;
private retryTimer;
private initializeAgentId;
private initializeLocaleId;
constructor();
start(): void;
stop(): void;
private scheduleRetry;
/**
* Returns as soon the result indicates that something else went wrong rather than transmitting.
* @param command
* @param retryInterval
*/
private executeCommandWithRetry;
private sendInitializeAgent;
private sendLocaleUpdate;
private handleNotifyClientsOnline;
}
export declare let clientServices: ClientServices;