@@ -62,10 +62,10 @@ declare module Intl {
62
62
resolvedOptions ( ) : ResolvedNumberFormatOptions ;
63
63
}
64
64
var NumberFormat : {
65
- new ( locales ?: string [ ] , options ?: NumberFormatOptions ) : Collator ;
66
- new ( locale ?: string , options ?: NumberFormatOptions ) : Collator ;
67
- ( locales ?: string [ ] , options ?: NumberFormatOptions ) : Collator ;
68
- ( locale ?: string , options ?: NumberFormatOptions ) : Collator ;
65
+ new ( locales ?: string [ ] , options ?: NumberFormatOptions ) : NumberFormat ;
66
+ new ( locale ?: string , options ?: NumberFormatOptions ) : NumberFormat ;
67
+ ( locales ?: string [ ] , options ?: NumberFormatOptions ) : NumberFormat ;
68
+ ( locale ?: string , options ?: NumberFormatOptions ) : NumberFormat ;
69
69
supportedLocalesOf ( locales : string [ ] , options ?: NumberFormatOptions ) : string [ ] ;
70
70
supportedLocalesOf ( locale : string , options ?: NumberFormatOptions ) : string [ ] ;
71
71
}
@@ -107,10 +107,10 @@ declare module Intl {
107
107
resolvedOptions ( ) : ResolvedDateTimeFormatOptions ;
108
108
}
109
109
var DateTimeFormat : {
110
- new ( locales ?: string [ ] , options ?: DateTimeFormatOptions ) : Collator ;
111
- new ( locale ?: string , options ?: DateTimeFormatOptions ) : Collator ;
112
- ( locales ?: string [ ] , options ?: DateTimeFormatOptions ) : Collator ;
113
- ( locale ?: string , options ?: DateTimeFormatOptions ) : Collator ;
110
+ new ( locales ?: string [ ] , options ?: DateTimeFormatOptions ) : DateTimeFormat ;
111
+ new ( locale ?: string , options ?: DateTimeFormatOptions ) : DateTimeFormat ;
112
+ ( locales ?: string [ ] , options ?: DateTimeFormatOptions ) : DateTimeFormat ;
113
+ ( locale ?: string , options ?: DateTimeFormatOptions ) : DateTimeFormat ;
114
114
supportedLocalesOf ( locales : string [ ] , options ?: DateTimeFormatOptions ) : string [ ] ;
115
115
supportedLocalesOf ( locale : string , options ?: DateTimeFormatOptions ) : string [ ] ;
116
116
}
0 commit comments