Add compactDisplay and signDisplay to NumberFormatOptions (#40039)

This commit is contained in:
Neil Kistner
2020-08-21 02:49:22 -05:00
committed by GitHub
parent 8429ddd4f0
commit 585603e934
2 changed files with 8 additions and 0 deletions

View File

@@ -263,13 +263,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;
}