From be638c57f89b42d1474243156980f45e1ddc9039 Mon Sep 17 00:00:00 2001 From: fancyoung Date: Mon, 17 Mar 2014 12:40:13 +0800 Subject: [PATCH] fix bootstrap.datepicker type Param `startDate` and `endDate` are not only Date type. --- bootstrap.datepicker/bootstrap.datepicker.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.datepicker/bootstrap.datepicker.d.ts b/bootstrap.datepicker/bootstrap.datepicker.d.ts index 0664b2aa0..40d769b03 100644 --- a/bootstrap.datepicker/bootstrap.datepicker.d.ts +++ b/bootstrap.datepicker/bootstrap.datepicker.d.ts @@ -8,8 +8,8 @@ interface DatepickerOptions { format?: string; weekStart?: number; - startDate?: Date; - endDate?: Date; + startDate?: any; + endDate?: any; autoclose?: boolean; startView?: number; todayBtn?: boolean;