fix bootstrap.datepicker type

Param `startDate` and `endDate` are not only Date type.
This commit is contained in:
fancyoung
2014-03-17 12:40:13 +08:00
parent eed8736e64
commit be638c57f8
+2 -2
View File
@@ -8,8 +8,8 @@
interface DatepickerOptions {
format?: string;
weekStart?: number;
startDate?: Date;
endDate?: Date;
startDate?: any;
endDate?: any;
autoclose?: boolean;
startView?: number;
todayBtn?: boolean;