mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
/**
|
|
* @name nMax
|
|
* @summary Finds and returns the highest value in an array of bigint.
|
|
*/
|
|
export declare const nMax: (...items: bigint[]) => bigint;
|
|
/**
|
|
* @name nMin
|
|
* @summary Finds and returns the lowest value in an array of bigint.
|
|
*/
|
|
export declare const nMin: (...items: bigint[]) => bigint;
|