Closed
Description
I noticed these are currently typed as {..}
, would it be welcome to PR some more completely typed ones rather than the open object type?
e.g for NumberFormat
type currencyDisplay = [#symbol | #narrowSymbol | #code | #name]
type currencySign = [#accounting | #standard]
type localeMatcher = [#lookup | @as("best fit") #bestFit]
type notation = [#scientific | #standard | #engineering | #compact]
type displayType = [#short | #long]
type signDisplay = [
| #auto
| #always
| #exceptZero
| #never
]