UNPKG

tardis-dev

Version:

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

18 lines 652 B
import { Filter } from '../types.ts'; import { RealTimeFeedBase } from './realtimefeed.ts'; export declare class DeltaRealTimeFeed extends RealTimeFeedBase { protected readonly wssURL = "wss://socket.delta.exchange"; protected mapToSubscribeMessages(filters: Filter<string>[]): { type: string; payload: { channels: { name: string; symbols: string[] | undefined; }[]; }; }[]; protected messageIsError(message: any): boolean; protected sendCustomPing: () => void; protected messageIsHeartbeat(msg: any): boolean; } //# sourceMappingURL=delta.d.ts.map