tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
13 lines • 628 B
TypeScript
import { Filter } from '../types.ts';
import { RealTimeFeedBase } from './realtimefeed.ts';
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