cotizaciones-uruguay
Version:
Cotizaciones de bancos en Uruguay
14 lines (13 loc) • 608 B
TypeScript
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;
};