File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,20 @@ export interface DateFormatNameOptions {
55 standAlone ?: string ;
66}
77
8+ export interface CurrencyDisplayOptions {
9+ currency : string ;
10+ currencyDisplay ?: string ;
11+ value ?: number ;
12+ }
13+
14+ export function currencyDisplay ( locale : string , options : CurrencyDisplayOptions ) : any ;
15+ export function currencyDisplays ( locale : string , currency : string ) : any ;
16+ export function currencyFractionOptions ( locale : string ) : any ;
817export function dateFormatNames ( locale : string , options : DateFormatNameOptions ) : any ;
18+ export function dateFormatNames ( locale : string ) : any ;
919export function firstDay ( locale : string ) : number ;
1020export function load ( ...data : any [ ] ) : void ;
11- export function numberSymbols ( locale : string ) : any ;
21+ export function localeCurrency ( locale : string ) : any ;
22+ export function localeInfo ( locale : string ) : any ;
23+ export function numberSymbols ( locale : string ) : any ;
24+ export function territoryCurrencyCode ( territory : string ) : any ;
You can’t perform that action at this time.
0 commit comments