/** * Decimal adjustment of a number. * Adapted from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round#Example:_Decimal_rounding * * @param value The number * @returns The adjusted value */ export declare function decimalAdjust(value: number): number; //# sourceMappingURL=decimalAdjust.d.ts.map