File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -4251,6 +4251,7 @@ declare namespace Intl {
4251
4251
maximumFractionDigits ?: number ;
4252
4252
minimumSignificantDigits ?: number ;
4253
4253
maximumSignificantDigits ?: number ;
4254
+ notation ?: string ;
4254
4255
}
4255
4256
4256
4257
interface ResolvedNumberFormatOptions {
@@ -4265,6 +4266,7 @@ declare namespace Intl {
4265
4266
minimumSignificantDigits ?: number ;
4266
4267
maximumSignificantDigits ?: number ;
4267
4268
useGrouping : boolean ;
4269
+ notation ?: string ;
4268
4270
}
4269
4271
4270
4272
interface NumberFormat {
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