File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -200,15 +200,15 @@ declare namespace Intl {
200
200
interface NumberFormatOptions {
201
201
compactDisplay ?: "short" | "long" | undefined ;
202
202
notation ?: "standard" | "scientific" | "engineering" | "compact" | undefined ;
203
- signDisplay ?: "auto" | "never" | "always" | undefined ;
203
+ signDisplay ?: "auto" | "never" | "always" | "exceptZero" | undefined ;
204
204
unit ?: string | undefined ;
205
205
unitDisplay ?: "short" | "long" | "narrow" | undefined ;
206
206
}
207
207
208
208
interface ResolvedNumberFormatOptions {
209
209
compactDisplay ?: "short" | "long" ;
210
210
notation ?: "standard" | "scientific" | "engineering" | "compact" ;
211
- signDisplay ?: "auto" | "never" | "always" ;
211
+ signDisplay ?: "auto" | "never" | "always" | "exceptZero" ;
212
212
unit ?: string ;
213
213
unitDisplay ?: "short" | "long" | "narrow" ;
214
214
}
You can’t perform that action at this time.
0 commit comments