17 lines
309 B
TypeScript
17 lines
309 B
TypeScript
![]() |
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,
|
||
|
},
|
||
|
};
|