UNPKG

crnc

Version:

currency conversion and functionality for the web

7 lines (6 loc) 339 B
import { DownloadExchangeRatesParams, DownloadExchangeRatesResults } from "../interfaces.js"; /** * Download exchange rates * - from bank of canada valet service https://www.bankofcanada.ca/valet/docs */ export declare function downloadExchangeRates({ currencies, }: DownloadExchangeRatesParams): Promise<DownloadExchangeRatesResults>;