File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 66 "type" : " git" ,
77 "url" : " https://github.com/telerik/kendo-intl.git"
88 },
9- "cldr-data-coverage" : " full" ,
9+ "main" : " dist/npm/js/main.js" ,
10+ "typings" : " dist/npm/js/main" ,
1011 "scripts" : {
1112 "build-package" : " gulp build-npm-package" ,
1213 "test" : " gulp test" ,
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ export interface DateFormatNameOptions {
22 type : string ;
33 nameType : string ;
44 lower ?: string ;
5- standAlone ?: string ;
5+ standAlone ?: string ;
66}
77
8- export function dateFormatNames ( locale : string , options : DateFormatNameOptions ) ;
8+ export function dateFormatNames ( locale : string , options : DateFormatNameOptions ) : any ;
99export function firstDay ( locale : string ) : number ;
1010export function load ( ...data : any [ ] ) : void ;
Original file line number Diff line number Diff line change 1- export function toString ( value : string , format : string , locale ?: string ) : string ;
2- export function format ( format : string , values : Array < any > , locale ?: string ) : string ;
1+ export function toString ( value : any , format : string , locale ?: string ) : string ;
2+ export function format ( format : string , values : Array < any > , locale ?: string ) : string ;
Original file line number Diff line number Diff line change 1+ export * from './numbers' ;
2+ export * from './dates' ;
3+ export * from './cldr' ;
4+ export * from './format' ;
5+
You can’t perform that action at this time.
0 commit comments