@easymoney/currencies
Version:
Best way to do money in js
6 lines • 361 B
TypeScript
import { CurrencyList } from "./types";
import { AnyCurrencyUnit } from "@easymoney/core";
declare type NewList<C> = CurrencyList<Partial<C>>;
declare const createAgregatedCurrencyList: <C extends AnyCurrencyUnit>(currenciesList: NewList<C>[]) => NewList<C>;
export { createAgregatedCurrencyList };
//# sourceMappingURL=createAgregatedCurrencyList.d.ts.map