File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -261,4 +261,12 @@ declare namespace Intl {
261
261
options ?: RelativeTimeFormatOptions ,
262
262
) : BCP47LanguageTag [ ] ;
263
263
} ;
264
+
265
+ interface NumberFormatOptions {
266
+ notation ?: string ;
267
+ }
268
+
269
+ interface ResolvedNumberFormatOptions {
270
+ notation ?: string ;
271
+ }
264
272
}
Original file line number Diff line number Diff line change @@ -3898,6 +3898,7 @@ declare module Intl {
3898
3898
maximumFractionDigits?: number;
3899
3899
minimumSignificantDigits?: number;
3900
3900
maximumSignificantDigits?: number;
3901
+ notation?: string;
3901
3902
}
3902
3903
3903
3904
interface ResolvedNumberFormatOptions {
@@ -3912,6 +3913,7 @@ declare module Intl {
3912
3913
minimumSignificantDigits?: number;
3913
3914
maximumSignificantDigits?: number;
3914
3915
useGrouping: boolean;
3916
+ notation?: string;
3915
3917
}
3916
3918
3917
3919
interface NumberFormat {
You can’t perform that action at this time.
0 commit comments