UNPKG

aes70

Version:

A controller library for the AES70 protocol.

19 lines (16 loc) 461 B
import { IClientConnectionOptions, ClientConnection, } from './client_connection'; export interface IWebSocketConnectionBaseOptions extends IClientConnectionOptions { url: string; } /** * :class:`ClientConnection` subclass which implements OCP.1 with WebSocket * transport. This is a generic base class used both by NodeJS and in the * Browser. */ export class WebSocketConnectionBase extends ClientConnection { write(buf: ArrayBuffer): void; }