forex-rates
Version:
Exchange rates API client which provides easy to use functions for exchanging currencies
23 lines • 523 B
TypeScript
/**
* Representation of supported query parameters used by the exchange rates API
*/
interface Queries {
/**
* Base currency to calculate conversions against
*/
base?: string;
/**
* Array of currencies to have conversions returned for
*/
symbols?: string;
/**
* Start date for historical exchange rates
*/
start_at?: string;
/**
* End date for historical exchange rates
*/
end_at?: string;
}
export { Queries };
//# sourceMappingURL=Queries.d.ts.map