mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 17:56:13 -04:00
5 lines
248 B
TypeScript
5 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;
|
||
|
}
|