Returns the minimum of two BigInt values.
min(1n, 2n);// 1n
function min(a: bigint, b: bigint): bigint;
The first BigInt value.
let a: bigint;
The second BigInt value.
let b: bigint;
let returnType: bigint;
The smaller of the two BigInt values.