UNPKG

tardis-dev

Version:

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

11 lines 434 B
import { Filter } from '../types.ts'; import { RealTimeFeedBase } from './realtimefeed.ts'; export declare class BitmexRealTimeFeed extends RealTimeFeedBase { protected readonly wssURL = "wss://ws.bitmex.com/realtime"; protected mapToSubscribeMessages(filters: Filter<string>[]): { op: string; args: string[]; }[]; protected messageIsError(message: any): boolean; } //# sourceMappingURL=bitmex.d.ts.map