18 lines
396 B
TypeScript
18 lines
396 B
TypeScript
import { QUIZ_QUESTION_BASE } from "./base";
|
|
|
|
import type { QuizQuestionPage } from "../model/questionTypes/page";
|
|
|
|
export const QUIZ_QUESTION_PAGE: Omit<QuizQuestionPage, "id"> = {
|
|
...QUIZ_QUESTION_BASE,
|
|
type: "page",
|
|
content: {
|
|
...QUIZ_QUESTION_BASE.content,
|
|
innerNameCheck: false,
|
|
innerName: "",
|
|
text: "",
|
|
picture: "",
|
|
originalPicture: "",
|
|
video: "",
|
|
},
|
|
};
|