mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 09:46:15 -04:00
4 lines
248 B
TypeScript
4 lines
248 B
TypeScript
declare module 'currency-exchanger-js'{
|
|
export function convertOnDate(value: number,fromCurrency: string,toCurrency: string,inputDate: Date): number;
|
|
export function convert(value: number,fromCurrency: string,toCurrency: string): number;
|
|
}
|