File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -224,22 +224,21 @@ declare namespace Intl {
224
224
} ;
225
225
226
226
interface NumberFormatOptions {
227
+ numberingSystem : string | undefined ;
227
228
compactDisplay ?: "short" | "long" | undefined ;
228
229
notation ?: "standard" | "scientific" | "engineering" | "compact" | undefined ;
229
230
signDisplay ?: "auto" | "never" | "always" | "exceptZero" | undefined ;
230
231
unit ?: string | undefined ;
231
232
unitDisplay ?: "short" | "long" | "narrow" | undefined ;
232
- currencyDisplay ?: string | undefined ;
233
233
currencySign ?: string | undefined ;
234
234
}
235
235
236
236
interface ResolvedNumberFormatOptions {
237
237
compactDisplay ?: "short" | "long" ;
238
- notation ? : "standard" | "scientific" | "engineering" | "compact" ;
239
- signDisplay ? : "auto" | "never" | "always" | "exceptZero" ;
238
+ notation : "standard" | "scientific" | "engineering" | "compact" ;
239
+ signDisplay : "auto" | "never" | "always" | "exceptZero" ;
240
240
unit ?: string ;
241
241
unitDisplay ?: "short" | "long" | "narrow" ;
242
- currencyDisplay ?: string ;
243
242
currencySign ?: string ;
244
243
}
245
244
Original file line number Diff line number Diff line change @@ -4413,7 +4413,7 @@ declare namespace Intl {
4413
4413
localeMatcher ?: string | undefined ;
4414
4414
style ?: string | undefined ;
4415
4415
currency ?: string | undefined ;
4416
- currencySign ?: string | undefined ;
4416
+ currencyDisplay ?: string | undefined ;
4417
4417
useGrouping ?: boolean | undefined ;
4418
4418
minimumIntegerDigits ?: number | undefined ;
4419
4419
minimumFractionDigits ?: number | undefined ;
@@ -4427,6 +4427,7 @@ declare namespace Intl {
4427
4427
numberingSystem : string ;
4428
4428
style : string ;
4429
4429
currency ?: string ;
4430
+ currencyDisplay ?: string ;
4430
4431
minimumIntegerDigits : number ;
4431
4432
minimumFractionDigits : number ;
4432
4433
maximumFractionDigits : number ;
You can’t perform that action at this time.
0 commit comments