From ff23c60de095e51bf46626a33fe6a6fb46b4f8fc Mon Sep 17 00:00:00 2001 From: Alexander Moerman Date: Mon, 5 Oct 2015 20:12:55 +0200 Subject: [PATCH] Update bootstrap.v3.datetimepicker.d.ts Added four missing properties. See http://eonasdan.github.io/bootstrap-datetimepicker/Options/#showtodaybutton There's still quite a few missing but I'm running short on time. --- .../bootstrap.v3.datetimepicker.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.ts b/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.ts index 6f1147cc1..228b7537f 100644 --- a/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.ts +++ b/bootstrap.v3.datetimepicker/bootstrap.v3.datetimepicker.d.ts @@ -48,6 +48,10 @@ declare module BootstrapV3DatetimePicker { direction?: string; sideBySide?: boolean; daysOfWeekDisabled?: Array; + calendarWeeks?: boolean; + format?: string | boolean; + locale?: string; + showTodayButton?: boolean; } interface Datetimepicker { @@ -97,4 +101,4 @@ interface JQuery { on(events: 'dp.error', handler: (eventObject: BootstrapV3DatetimePicker.DatetimepickerEventObject) => any): JQuery; data(key: 'DateTimePicker'): BootstrapV3DatetimePicker.Datetimepicker; -} \ No newline at end of file +}