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