frontPanel/src/constants/base.ts

17 lines
309 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,
content: {
hint: {
text: "",
video: "",
},
back: "",
autofill: false,
},
};