cli-stash
Version:
CLI application to manage and work with Atlassian Stash. Work with your Stash project and repositories from Command lines.
11 lines (10 loc) • 430 B
TypeScript
export declare class MathUtils {
/**
* Method to round a number with a selected decimal precission. By default, round with two decimals
* @param {number} number Number to round
* @param {number} [decimalNumbers] Decimal numbers precission
*
* @returns {number} Returns a rounded number with the specified decimals
*/
static round(number: number, decimalNumbers?: number): number;
}