tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
11 lines • 339 B
TypeScript
import { Exchange } from './types.ts';
export declare function getApiKeyAccessInfo(apiKey?: string): Promise<ApiKeyAccessInfo>;
export type ApiKeyAccessInfo = {
exchange: Exchange;
accessType: string;
from: string;
to: string;
symbols: string[];
dataPlan: string;
}[];
//# sourceMappingURL=apikeyaccessinfo.d.ts.map