UNPKG

tardis-dev

Version:

Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js

13 lines 622 B
import { Filter } from '../types'; import { RealTimeFeedBase } from './realtimefeed'; export declare class KucoinRealTimeFeed extends RealTimeFeedBase { protected wssURL: string; private _httpURL; protected getWebSocketUrl(): Promise<string>; protected mapToSubscribeMessages(filters: Filter<string>[]): any[]; protected provideManualSnapshots(filters: Filter<string>[], shouldCancel: () => boolean): Promise<void>; protected messageIsError(message: any): boolean; protected sendCustomPing: () => void; protected messageIsHeartbeat(msg: any): boolean; } //# sourceMappingURL=kucoin.d.ts.map