tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
14 lines • 563 B
TypeScript
import { Filter } from '../types';
import { RealTimeFeedBase } from './realtimefeed';
export declare class PoloniexRealTimeFeed extends RealTimeFeedBase {
protected readonly wssURL = "wss://ws.poloniex.com/ws/public";
protected mapToSubscribeMessages(filters: Filter<string>[]): {
event: string;
channel: string[];
symbols: string[];
}[];
protected sendCustomPing: () => void;
protected messageIsHeartbeat(msg: any): boolean;
protected messageIsError(message: any): boolean;
}
//# sourceMappingURL=poloniex.d.ts.map