UNPKG

407 BTypeScriptView Raw
1import { ArbitraryWithContextualShrink } from '../check/arbitrary/definition/ArbitraryWithContextualShrink';
2/**
3 * For unsigned bigint of n bits
4 *
5 * Generated values will be between 0 (included) and 2^n (excluded)
6 *
7 * @param n - Maximal number of bits of the generated bigint
8 *
9 * @remarks Since 1.9.0
10 * @public
11 */
12export declare function bigUintN(n: number): ArbitraryWithContextualShrink<bigint>;