feat(new tool): Currency Converter

Fix part of #571
This commit is contained in:
sharevb 2024-09-28 11:15:07 +02:00 committed by ShareVB
parent 318fb6efb9
commit b241003366
9 changed files with 242 additions and 13 deletions

View file

@ -0,0 +1,4 @@
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;
}