@@ -38,16 +38,6 @@ declare class Intl$Collator {
3838static supportedLocalesOf ( locales ? :Intl$Locales ) :Intl$Locale [ ] ;
3939}
4040
41- declare type Intl$CollatorOptions = {
42- localeMatcher ?:'lookup' | 'best fit' ,
43- usage ?:'sort' | 'search' ,
44- sensitivity ?:'base' | 'accent' | 'case' | 'variant' ,
45- ignorePunctuation ?:boolean ,
46- numeric ?:boolean ,
47- caseFirst ?:'upper' | 'lower' | 'false' ,
48- ...
49- }
50-
5141type FormatToPartsType = | 'day' | 'dayPeriod' | 'era' | 'hour' | 'literal'
5242| 'minute' | 'month' | 'second' | 'timeZoneName' | 'weekday' | 'year' ;
5343
@@ -93,23 +83,6 @@ declare class Intl$DateTimeFormat {
9383static supportedLocalesOf ( locales ? :Intl$Locales ) :Intl$Locale [ ] ;
9484}
9585
96- declare type Intl$DateTimeFormatOptions = {
97- localeMatcher ?: 'lookup '| 'best fit' ,
98- timeZone ?:string ,
99- hour12 ?:boolean ,
100- formatMatcher ?:'basic' | 'best fit' ,
101- weekday ?:'narrow' | 'short' | 'long' ,
102- era ?:'narrow' | 'short' | 'long' ,
103- year ?:'numeric' | '2-digit' ,
104- month ?:'numeric' | '2-digit' | 'narrow' | 'short' | 'long' ,
105- day ?:'numeric' | '2-digit' ,
106- hour ?:'numeric' | '2-digit' ,
107- minute ?:'numeric' | '2-digit' ,
108- second ?:'numeric' | '2-digit' ,
109- timeZoneName ?:'short' | 'long' ,
110- ...
111- }
112-
11386declare class Intl$LocaleClass {
11487baseName :string ,
11588calendar ?:string ,
@@ -173,20 +146,6 @@ declare class Intl$NumberFormat {
173146static supportedLocalesOf ( locales ? :Intl$Locales ) :Intl$Locale [ ] ;
174147}
175148
176- declare type Intl$NumberFormatOptions = {
177- localeMatcher ?: 'lookup '| 'best fit' ,
178- style ?:'decimal' | 'currency' | 'percent' | 'unit' ,
179- currency ?:string ,
180- currencyDisplay ?:'symbol' | 'code' | 'name' | 'narrowSymbol' ,
181- useGrouping ?:boolean ,
182- minimumIntegerDigits ?:number ,
183- minimumFractionDigits ?:number ,
184- maximumFractionDigits ?:number ,
185- minimumSignificantDigits ?:number ,
186- maximumSignificantDigits ?:number ,
187- ...
188- }
189-
190149declare class Intl$PluralRules {
191150constructor (
192151locales ? :Intl$Locales ,