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