tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
11 lines • 549 B
TypeScript
import { Filter } from '../types';
import { RealTimeFeedBase } from './realtimefeed';
export declare class WooxRealTimeFeed extends RealTimeFeedBase {
protected wssURL: string;
protected mapToSubscribeMessages(filters: Filter<string>[]): any[];
protected provideManualSnapshots(filters: Filter<string>[], shouldCancel: () => boolean): Promise<void>;
protected messageIsError(message: any): boolean;
protected messageIsHeartbeat(message: any): boolean;
protected onMessage(msg: any): void;
}
//# sourceMappingURL=woox.d.ts.map