mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-10 07:44:25 +00:00
18 lines
496 B
TypeScript
18 lines
496 B
TypeScript
|
export declare class ConnectionFactory {
|
||
|
url: string;
|
||
|
protocols: string[];
|
||
|
constructor(url: string, protocols: string[]);
|
||
|
create(): Connection;
|
||
|
}
|
||
|
export declare class Connection {
|
||
|
bare: WebSocket;
|
||
|
constructor(url: string, protocols: string[]);
|
||
|
open(): void;
|
||
|
close(): void;
|
||
|
send(data: string): void;
|
||
|
isOpen(): boolean;
|
||
|
onOpen(callback: () => void): void;
|
||
|
onReceive(callback: (data: string) => void): void;
|
||
|
onClose(callback: () => void): void;
|
||
|
}
|