datepicker.config.d.ts 481 B

12345678910111213141516171819
  1. export declare class DatepickerConfig {
  2. locale: string;
  3. datepickerMode: string;
  4. startingDay: number;
  5. yearRange: number;
  6. minMode: string;
  7. maxMode: string;
  8. showWeeks: boolean;
  9. formatDay: string;
  10. formatMonth: string;
  11. formatYear: string;
  12. formatDayHeader: string;
  13. formatDayTitle: string;
  14. formatMonthTitle: string;
  15. onlyCurrentMonth: boolean;
  16. monthColLimit: number;
  17. yearColLimit: number;
  18. shortcutPropagation: boolean;
  19. }