frontPanel/src/constants/base.ts

32 lines
569 B
TypeScript
Raw Normal View History

2023-10-13 12:09:05 +00:00
import type { QuizQuestionInitial } from "../model/questionTypes/shared";
2023-10-03 14:03:57 +00:00
2023-10-13 12:09:05 +00:00
export const QUIZ_QUESTION_BASE: Omit<QuizQuestionInitial, "id"> = {
2023-10-03 14:03:57 +00:00
title: "",
2023-10-13 12:09:05 +00:00
type: "nonselected",
2023-10-17 10:53:19 +00:00
expanded: true,
2023-10-31 09:59:41 +00:00
openedModalSettings: false,
2023-10-03 14:03:57 +00:00
required: false,
2023-10-05 14:03:54 +00:00
deleted: false,
deleteTimeoutId: 0,
2023-10-03 14:03:57 +00:00
content: {
hint: {
text: "",
video: "",
},
2023-10-04 09:07:59 +00:00
rule: {
or: true,
show: true,
2023-10-06 08:34:44 +00:00
title: "",
2023-10-04 09:07:59 +00:00
reqs: [
{
id: "",
vars: [],
},
],
},
2023-10-03 14:03:57 +00:00
back: "",
originalBack: "",
2023-10-03 14:03:57 +00:00
autofill: false,
},
};