frontPanel/src/constants/base.ts

35 lines
724 B
TypeScript
Raw Normal View History

2023-11-14 20:15:52 +00:00
import type { QuizQuestionBase } from "../model/questionTypes/shared";
2023-10-03 14:03:57 +00:00
2023-11-14 20:15:52 +00:00
export const QUIZ_QUESTION_BASE: Omit<QuizQuestionBase, "id" | "fixedId"> = {
2023-11-14 20:15:52 +00:00
quizId: 0,
description: "",
page: 0,
title: "",
expanded: true,
openedModalSettings: false,
required: false,
deleted: false,
deleteTimeoutId: 0,
content: {
hint: {
text: "",
video: "",
},
rule: {
or: true,
show: true,
title: "",
reqs: [
{
id: "",
vars: [],
},
],
2023-10-04 09:07:59 +00:00
},
2023-11-14 20:15:52 +00:00
back: "",
originalBack: "",
autofill: false,
2023-10-04 09:07:59 +00:00
},
2023-10-03 14:03:57 +00:00
};