File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ declare namespace Intl {
4040 // We can only have one definition for 'type' in TypeScript, and so you can learn where the keys come from here:
4141 type ES2018NumberFormatPartType = "literal" | "nan" | "infinity" | "percent" | "integer" | "group" | "decimal" | "fraction" | "plusSign" | "minusSign" | "percentSign" | "currency" | "code" | "symbol" | "name" ;
4242 type ES2020NumberFormatPartType = "compact" | "exponentInteger" | "exponentMinusSign" | "exponentSeparator" | "unit" | "unknown" ;
43- type NumberFormatPartType = ES2018NumberFormatPartType | ES2020NumberFormatPartType ;
43+ type NumberFormatPartTypes = ES2018NumberFormatPartType | ES2020NumberFormatPartType ;
4444
4545 interface NumberFormatPart {
46- type : NumberFormatPartType ;
46+ type : NumberFormatPartTypes ;
4747 value : string ;
4848 }
4949
You can’t perform that action at this time.
0 commit comments