1 | /**
|
2 | * @name _0n
|
3 | * @summary BigInt constant for 0.
|
4 | */
|
5 | export declare const _0n: bigint;
|
6 | /**
|
7 | * @name _1n
|
8 | * @summary BigInt constant for 1.
|
9 | */
|
10 | export declare const _1n: bigint;
|
11 | /**
|
12 | * @name _2n
|
13 | * @summary BigInt constant for 2.
|
14 | */
|
15 | export declare const _2n: bigint;
|
16 | /**
|
17 | * @name _3n
|
18 | * @summary BigInt constant for 3.
|
19 | */
|
20 | export declare const _3n: bigint;
|
21 | /**
|
22 | * @name _4n
|
23 | * @summary BigInt constant for 4.
|
24 | */
|
25 | export declare const _4n: bigint;
|
26 | /**
|
27 | * @name _5n
|
28 | * @summary BigInt constant for 5.
|
29 | */
|
30 | export declare const _5n: bigint;
|
31 | /**
|
32 | * @name _6n
|
33 | * @summary BigInt constant for 6.
|
34 | */
|
35 | export declare const _6n: bigint;
|
36 | /**
|
37 | * @name _7n
|
38 | * @summary BigInt constant for 7.
|
39 | */
|
40 | export declare const _7n: bigint;
|
41 | /**
|
42 | * @name _8n
|
43 | * @summary BigInt constant for 8.
|
44 | */
|
45 | export declare const _8n: bigint;
|
46 | /**
|
47 | * @name _9n
|
48 | * @summary BigInt constant for 9.
|
49 | */
|
50 | export declare const _9n: bigint;
|
51 | /**
|
52 | * @name _10n
|
53 | * @summary BigInt constant for 10.
|
54 | */
|
55 | export declare const _10n: bigint;
|
56 | /**
|
57 | * @name _100n
|
58 | * @summary BigInt constant for 100.
|
59 | */
|
60 | export declare const _100n: bigint;
|
61 | /**
|
62 | * @name _1000n
|
63 | * @summary BigInt constant for 1000.
|
64 | */
|
65 | export declare const _1000n: bigint;
|
66 | /**
|
67 | * @name _1Mn
|
68 | * @summary BigInt constant for 1,000,000 (million).
|
69 | */
|
70 | export declare const _1Mn: bigint;
|
71 | /**
|
72 | * @name _1Bn
|
73 | * @summary BigInt constant for 1,000,000,000 (billion).
|
74 | */
|
75 | export declare const _1Bn: bigint;
|
76 | /**
|
77 | * @name _1Qn
|
78 | * @summary BigInt constant for 1,000,000,000,000,000,000 (quitillion).
|
79 | */
|
80 | export declare const _1Qn: bigint;
|
81 | /**
|
82 | * @name _2pow53n
|
83 | * @summary BigInt constant for MAX_SAFE_INTEGER
|
84 | */
|
85 | export declare const _2pow53n: bigint;
|
86 | /**
|
87 | * @name _sqrt2pow53n
|
88 | * @summary BigInt constant for Math.sqrt(MAX_SAFE_INTEGER)
|
89 | */
|
90 | export declare const _sqrt2pow53n: bigint;
|