UNPKG

notbank

Version:
10 lines (9 loc) 335 B
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 }