diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-28 09:33:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 09:33:11 +1000 |
commit | 59237d195f6afa0d8927128751ba5ff4562d7cce (patch) | |
tree | 0aa28aff006eea751752e6160093f7631e99ad49 /cli/dts/lib.es2020.bigint.d.ts | |
parent | 56f6e57438c23f75e23e28f45ad0f76b94379d59 (diff) |
feat(cli): upgrade to TypeScript 4.3 (#9960)
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; /** |