summaryrefslogtreecommitdiff
path: root/cli/dts/lib.es2020.intl.d.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-11-24 09:31:10 +1100
committerGitHub <noreply@github.com>2020-11-24 09:31:10 +1100
commit276f5297556097461e0b63f2b958d825c1c857ab (patch)
treec4146607a4646968d03ef804ec573133b2547553 /cli/dts/lib.es2020.intl.d.ts
parent266925d772527c9ba5fbc094e67cade31fc35a47 (diff)
feat(cli): update to TypeScript 4.1 (#7573)
Diffstat (limited to 'cli/dts/lib.es2020.intl.d.ts')
-rw-r--r--cli/dts/lib.es2020.intl.d.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/dts/lib.es2020.intl.d.ts b/cli/dts/lib.es2020.intl.d.ts
index 4b1093db2..dc31f5e03 100644
--- a/cli/dts/lib.es2020.intl.d.ts
+++ b/cli/dts/lib.es2020.intl.d.ts
@@ -283,13 +283,17 @@ declare namespace Intl {
};
interface NumberFormatOptions {
+ compactDisplay?: string;
notation?: string;
+ signDisplay?: string;
unit?: string;
unitDisplay?: string;
}
interface ResolvedNumberFormatOptions {
+ compactDisplay?: string;
notation?: string;
+ signDisplay?: string;
unit?: string;
unitDisplay?: string;
}