aes70
Version:
A controller library for the AES70 protocol.
11 lines (8 loc) • 296 B
TypeScript
import { IConnectionOptions, Connection } from '../connection';
export type IClientConnectionOptions = IConnectionOptions;
/**
* A generic base class for all client connections.
*/
export declare class ClientConnection extends Connection {
constructor(options: IClientConnectionOptions);
}