notbank
Version:
The Notbank for Node.js
10 lines (9 loc) • 335 B
text/typescript
import { MessageFrame } from "./messageFrame";
import { WebsocketHooks } from "./websocketHooks";
export interface WebsocketConnectionConfiguration {
domain?: string;
websocketHooks?: WebsocketHooks;
peekMessageIn?: (message: MessageFrame) => void;
peekMessageOut?: (message: MessageFrame) => void;
withReconnect?: boolean
}