frontPanel/src/constants/date.ts

17 lines
385 B
TypeScript
Raw Normal View History

2023-10-03 14:03:57 +00:00
import { QUIZ_QUESTION_BASE } from "./base";
2023-10-02 19:43:07 +00:00
import type { QuizQuestionDate } from "../model/questionTypes/date";
2023-10-03 14:03:57 +00:00
export const QUIZ_QUESTION_DATE: Omit<QuizQuestionDate, "id"> = {
...QUIZ_QUESTION_BASE,
2023-10-02 19:43:07 +00:00
type: "date",
content: {
2023-10-03 14:03:57 +00:00
...QUIZ_QUESTION_BASE.content,
2023-10-02 19:43:07 +00:00
required: false,
innerNameCheck: false,
innerName: "",
dateRange: false,
time: false,
},
};