frontPanel/src/constants/base.ts

29 lines
484 B
TypeScript
Raw Normal View History

2023-10-03 14:03:57 +00:00
import type { QuizQuestionBase } from "../model/questionTypes/shared";
export const QUIZ_QUESTION_BASE: Omit<QuizQuestionBase, "id"> = {
title: "",
type: "",
expanded: false,
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,
reqs: [
{
id: "",
vars: [],
},
],
},
2023-10-03 14:03:57 +00:00
back: "",
autofill: false,
},
};