export type WsOperation = 'subscribe' | 'unsubscribe' | 'login' | 'access' | 'request'; export interface WsSpotOperation { op: WsOperation; args: TWSTopic[]; } export interface WsFuturesOperation { action: WsOperation; args: TWSTopic[]; } export type WsRequestOperation = WsSpotOperation | WsFuturesOperation;