- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
6 lines
415 B
TypeScript
6 lines
415 B
TypeScript
//#region ../../packages/constants/date.d.ts
|
|
declare const datePickTypes: readonly ["year", "years", "month", "months", "date", "dates", "week", "datetime", "datetimerange", "daterange", "monthrange", "yearrange"];
|
|
declare const WEEK_DAYS: readonly ["sun", "mon", "tue", "wed", "thu", "fri", "sat"];
|
|
type DatePickType = (typeof datePickTypes)[number];
|
|
//#endregion
|
|
export { DatePickType, WEEK_DAYS, datePickTypes }; |