5 lines
153 B
TypeScript
5 lines
153 B
TypeScript
export interface LogoutOptions {
|
|
serverUrl?: string;
|
|
}
|
|
export declare function logout(serverName: string, options?: LogoutOptions): Promise<number>;
|