frontPanel/src/constants/base.ts
2023-11-30 20:39:57 +03:00

28 lines
576 B
TypeScript

import type { QuizQuestionBase } from "../model/questionTypes/shared";
export const QUIZ_QUESTION_BASE: Omit<QuizQuestionBase, "id" | "backendId"> = {
quizId: 0,
description: "",
page: 0,
title: "",
expanded: true,
openedModalSettings: false,
required: false,
deleted: false,
deleteTimeoutId: 0,
content: {
hint: {
text: "",
video: "",
},
rule: {
default: "",
main: [],
},
back: "",
originalBack: "",
autofill: false,
},
};