From 388c226ab59b09d41571b53a7344bf8def8088d4 Mon Sep 17 00:00:00 2001 From: Tom von Clef Date: Wed, 18 Dec 2013 15:07:59 -0500 Subject: [PATCH] Changed the iso8601Week function of the Datepicker interface to return type 'number', not type 'void'. See: http://api.jqueryui.com/datepicker/ --- jqueryui/jqueryui.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jqueryui/jqueryui.d.ts b/jqueryui/jqueryui.d.ts index 7bd2be2f7..14a1d2579 100644 --- a/jqueryui/jqueryui.d.ts +++ b/jqueryui/jqueryui.d.ts @@ -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; }