Changed the iso8601Week function of the Datepicker interface to return type 'number', not type 'void'. See: http://api.jqueryui.com/datepicker/

This commit is contained in:
Tom von Clef
2013-12-18 15:07:59 -05:00
parent b11ea5a8ea
commit 388c226ab5
+1 -1
View File
@@ -157,7 +157,7 @@ declare module JQueryUI {
setDefaults(defaults: DatepickerOptions): void;
formatDate(format: string, date: Date, settings?: DatepickerFormatDateOptions): string;
parseDate(format: string, date: string, settings?: DatepickerFormatDateOptions): Date;
iso8601Week(date: Date): void;
iso8601Week(date: Date): number;
noWeekends(): void;
}