diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-08-27 10:12:59 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 10:12:59 +1000 |
commit | 935133f53af2b0efab5d22effff1239dc0e36147 (patch) | |
tree | f1cd283e50618e0cce4f70ff59a1e204856a592b /cli/dts/lib.esnext.intl.d.ts | |
parent | b9a965c607966efff91118e9a6f604c8f48ba88e (diff) |
feat(cli): Update to TypeScript 4.4 (#11678)
Diffstat (limited to 'cli/dts/lib.esnext.intl.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.intl.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.esnext.intl.d.ts b/cli/dts/lib.esnext.intl.d.ts index 165fcf7b3..175ef85de 100644 --- a/cli/dts/lib.esnext.intl.d.ts +++ b/cli/dts/lib.esnext.intl.d.ts @@ -27,6 +27,6 @@ declare namespace Intl { } interface NumberFormat { - formatToParts(number?: number): NumberFormatPart[]; + formatToParts(number?: number | bigint): NumberFormatPart[]; } } |