You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
448 B

1 month ago
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. const datePickTypes = [
  4. "year",
  5. "years",
  6. "month",
  7. "months",
  8. "date",
  9. "dates",
  10. "week",
  11. "datetime",
  12. "datetimerange",
  13. "daterange",
  14. "monthrange",
  15. "yearrange"
  16. ];
  17. const WEEK_DAYS = [
  18. "sun",
  19. "mon",
  20. "tue",
  21. "wed",
  22. "thu",
  23. "fri",
  24. "sat"
  25. ];
  26. exports.WEEK_DAYS = WEEK_DAYS;
  27. exports.datePickTypes = datePickTypes;
  28. //# sourceMappingURL=date.js.map