diff options
Diffstat (limited to 'cli/dts/lib.es2020.bigint.d.ts')
-rw-r--r-- | cli/dts/lib.es2020.bigint.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.es2020.bigint.d.ts b/cli/dts/lib.es2020.bigint.d.ts index 6dc8b25ac..92acfe4a4 100644 --- a/cli/dts/lib.es2020.bigint.d.ts +++ b/cli/dts/lib.es2020.bigint.d.ts @@ -121,7 +121,7 @@ interface BigInt { } interface BigIntConstructor { - (value?: any): bigint; + (value: bigint | boolean | number | string): bigint; readonly prototype: BigInt; /** |