import type { QuizQuestionBase } from "../model/questionTypes/shared"; export const QUIZ_QUESTION_BASE: Omit = { 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, }, };