From 86bc2813fbf24758aaf410b067cdfff3057a3b67 Mon Sep 17 00:00:00 2001 From: Rylan Cottrell Date: Mon, 17 Jul 2017 13:48:09 -0400 Subject: [PATCH] Added missing option maxViewMode (#17953) maxViewMode has the same type as minViewMode. http://bootstrap-datepicker.readthedocs.io/en/latest/options.html#maxviewmode --- types/bootstrap-datepicker/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/bootstrap-datepicker/index.d.ts b/types/bootstrap-datepicker/index.d.ts index 9287ee1ba3..34a40d60fa 100644 --- a/types/bootstrap-datepicker/index.d.ts +++ b/types/bootstrap-datepicker/index.d.ts @@ -36,6 +36,7 @@ interface DatepickerOptions { forceParse?: boolean; inputs?: any[]; minViewMode?: 0|"days"|1|"months"|2|"years"|3|"decades"|4|"centuries"|"millenium"; + maxViewMode?: 0|"days"|1|"months"|2|"years"|3|"decades"|4|"centuries"|"millenium"; multidate?: boolean|number; multidateSeparator?: string; orientation?: "auto"|"left top"|"left bottom"|"right top"|"right bottom";