UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

13 lines 383 B
/** * * @param items items to apply addition operation * @param digits digits for precision */ declare function addition(items: number[], digits?: number): string; /** * * @param { number | String } value number to fix */ declare function fixDecimals(value: number | string, decimals?: number): string; export { addition, fixDecimals }; //# sourceMappingURL=mathTools.d.ts.map