File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -263,13 +263,17 @@ declare namespace Intl {
263
263
} ;
264
264
265
265
interface NumberFormatOptions {
266
+ compactDisplay ?: string ;
266
267
notation ?: string ;
268
+ signDisplay ?: string ;
267
269
unit ?: string ;
268
270
unitDisplay ?: string ;
269
271
}
270
272
271
273
interface ResolvedNumberFormatOptions {
274
+ compactDisplay ?: string ;
272
275
notation ?: string ;
276
+ signDisplay ?: string ;
273
277
unit ?: string ;
274
278
unitDisplay ?: string ;
275
279
}
Original file line number Diff line number Diff line change @@ -3890,6 +3890,7 @@ declare module Intl {
3890
3890
interface NumberFormatOptions {
3891
3891
localeMatcher?: string;
3892
3892
style?: string;
3893
+ compactDisplay?: string;
3893
3894
currency?: string;
3894
3895
currencyDisplay?: string;
3895
3896
unit?: string;
@@ -3901,12 +3902,14 @@ declare module Intl {
3901
3902
minimumSignificantDigits?: number;
3902
3903
maximumSignificantDigits?: number;
3903
3904
notation?: string;
3905
+ signDisplay?: string;
3904
3906
}
3905
3907
3906
3908
interface ResolvedNumberFormatOptions {
3907
3909
locale: string;
3908
3910
numberingSystem: string;
3909
3911
style: string;
3912
+ compactDisplay?: string;
3910
3913
currency?: string;
3911
3914
currencyDisplay?: string;
3912
3915
unit?: string;
@@ -3918,6 +3921,7 @@ declare module Intl {
3918
3921
maximumSignificantDigits?: number;
3919
3922
useGrouping: boolean;
3920
3923
notation?: string;
3924
+ signDisplay?: string;
3921
3925
}
3922
3926
3923
3927
interface NumberFormat {
You can’t perform that action at this time.
0 commit comments