UNPKG

tardis-dev

Version:

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

24 lines 688 B
import { DatasetType } from './exchangedetails'; import { Exchange } from './types'; export declare function downloadDatasets(downloadDatasetsOptions: DownloadDatasetsOptions): Promise<void>; type GetFilenameOptions = { exchange: Exchange; dataType: DatasetType; symbol: string; date: Date; format: string; }; type DownloadDatasetsOptions = { exchange: Exchange; dataTypes: DatasetType[]; symbols: string[]; from: string; to: string; format?: 'csv'; apiKey?: string; downloadDir?: string; getFilename?: (options: GetFilenameOptions) => string; skipIfExists?: boolean; }; export {}; //# sourceMappingURL=downloaddatasets.d.ts.map