UNPKG

cotizaciones-uruguay

Version:
14 lines (13 loc) 608 B
import { obtenerUltimoCierre } from "./bcu/ultimoCierre.js"; import { obtenerMonedas } from "./bcu/monedas.js"; import { obtenerCotizaciones as obtenerCotizacionesBcu, type BcuErrorMessage } from "./bcu/cotizaciones.js"; import { obtenerCotizaciones as obtenerCotizacionesItau } from "./itau/index.js"; export type { BcuErrorMessage }; export declare const bcu: { obtenerUltimoCierre: typeof obtenerUltimoCierre; obtenerMonedas: typeof obtenerMonedas; obtenerCotizaciones: typeof obtenerCotizacionesBcu; }; export declare const itau: { obtenerCotizaciones: typeof obtenerCotizacionesItau; };