UNPKG

tardis-machine

Version:

Locally runnable server with built-in data caching, providing both tick-level historical and consolidated real-time cryptocurrency market data via HTTP and WebSocket APIs

9 lines 343 B
import { Exchange, Filter } from 'tardis-dev'; export declare const subscriptionsMappers: { [key in Exchange]: SubscriptionMapper; }; export type SubscriptionMapper = { canHandle: (message: object, date: Date) => boolean; map: (message: object, date: Date) => Filter<string>[]; }; //# sourceMappingURL=subscriptionsmappers.d.ts.map