diff --git a/daterangepicker/daterangepicker.d.ts b/daterangepicker/daterangepicker.d.ts index 11190aa85d..f3534a197e 100644 --- a/daterangepicker/daterangepicker.d.ts +++ b/daterangepicker/daterangepicker.d.ts @@ -138,5 +138,29 @@ declare module daterangepicker { * Format of the date string. example: 'YYYY-MM-DD' */ format?: string; + /** + * Separator between the startDate and endDate in the attached input element. Example: ' - ' + */ + separator?: string; + /** + * Text for the week label. + */ + weekLabel?: string; + /** + * Text for the custom range label. + */ + customRangeLabel?: string; + /** + * The first day of the week (0-6, Sunday to Saturday). + */ + firstDay?: number; + /** + * Weekday names displayed in the header of calendar. + */ + daysOfWeek?: string[]; + /** + * Month names used in the month select boxes. + */ + monthNames?: string[]; } }