@synotech/utils
Version:
a collection of utilities for internal use
10 lines (9 loc) • 341 B
TypeScript
declare class MathCurrency {
constructor();
add(...args: number[] | string[]): string;
subtract(...args: number[] | string[]): string;
multiply(...args: number[] | string[]): string;
divide(...args: number[] | string[]): string;
}
declare const mathCurrency: MathCurrency;
export { MathCurrency, mathCurrency };