frontPanel/src/constants/base.ts

28 lines
576 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
2023-11-27 23:07:24 +00:00
export const QUIZ_QUESTION_BASE: Omit<QuizQuestionBase, "id" | "backendId"> = {
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: {
2023-11-30 17:39:57 +00:00
default: "",
main: [],
},
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
};