Added missing properties to Locale interface (#9565)

This commit is contained in:
sp4m
2016-06-08 10:20:20 +02:00
committed by Horiuchi_H
parent c5c0935da1
commit b040dd974e

View File

@@ -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[];
}
}