UNPKG

301 BTypeScriptView Raw
1/**
2 * @name nMax
3 * @summary Finds and returns the highest value in an array of bigint.
4 */
5export declare function nMax(...items: bigint[]): bigint;
6/**
7 * @name nMin
8 * @summary Finds and returns the lowest value in an array of bigint.
9 */
10export declare function nMin(...items: bigint[]): bigint;