UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines (8 loc) 381 B
import { GxBigNumber } from "../types/gxbignumber"; /** * Rounds the given number to the specified number of decimal digits * @param {number | GxBigNumber | string} value * @param {number | GxBigNumber | string} digits * @returns GxBigNumber */ export declare const roundBigNumber: (value: number | GxBigNumber | string, digits: number | GxBigNumber | string) => GxBigNumber;