UNPKG

aes70

Version:

A controller library for the AES70 protocol.

18 lines (15 loc) 543 B
import { WebSocketConnectionBase, IWebSocketConnectionBaseOptions, } from './websocket_connection_base.js'; export type IWebSocketConnectionOptions = IWebSocketConnectionBaseOptions; export class WebSocketConnection extends WebSocketConnectionBase { constructor(ws: WebSocket, options: WebSocketConnectionOptions); static connectWebSocket( WebSocket: typeof WebSocket, options: WebSocketConnectionOptions ): Promise<WebSocket>; static connect( options: WebSocketConnectionOptions ): Promise<WebSocketConnection>; }