UNPKG

kucoin-api

Version:

Complete & robust Node.js SDK for Kucoin's REST APIs and WebSockets, with TypeScript & strong end to end tests.

9 lines (8 loc) 265 B
export type WsOperation = 'subscribe' | 'unsubscribe' | 'login' | 'access' | 'request'; export interface WsRequestOperation<TWSTopic extends string> { id: number; type: WsOperation; topic: TWSTopic; privateChannel: boolean; response: boolean; }