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
7 lines • 354 B
TypeScript
import { Exchange, Filter } from 'tardis-dev';
export declare const subscriptionsMappers: Partial<Record<Exchange | 'lighter', SubscriptionMapper>>;
export type SubscriptionMapper = {
canHandle: (message: object, date: Date) => boolean;
map: (message: object, date: Date) => Filter<string>[];
};
//# sourceMappingURL=subscriptionsmappers.d.ts.map