UNPKG

forex-rates

Version:

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

11 lines 200 B
/** * Representation of response for exchange rates */ interface Rates { /** * Currency and value */ [name: string]: number; } export { Rates }; //# sourceMappingURL=Rates.d.ts.map