UNPKG

forex-rates

Version:

Exchange rates API client which provides easy to use functions for exchanging currencies

16 lines 351 B
/** * Representation of response for historical exchange rates */ interface HistoricalRates { /** * Datestamp yyyy-mm-dd of the exchange rate */ [name: string]: { /** * Currency and value */ [name: string]: number; }; } export { HistoricalRates }; //# sourceMappingURL=HistoricalRates.d.ts.map