it-tools/src/tools/currency-converter/currency-exchanger-js.d.ts

5 lines
248 B
TypeScript
Raw Normal View History

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;
}