frontPanel/src/constants/page.ts

18 lines
396 B
TypeScript
Raw Normal View History

2023-10-03 14:03:57 +00:00
import { QUIZ_QUESTION_BASE } from "./base";
2023-10-02 19:43:07 +00:00
import type { QuizQuestionPage } from "../model/questionTypes/page";
2023-10-03 14:03:57 +00:00
export const QUIZ_QUESTION_PAGE: Omit<QuizQuestionPage, "id"> = {
...QUIZ_QUESTION_BASE,
2023-10-02 19:43:07 +00:00
type: "page",
content: {
2023-10-03 14:03:57 +00:00
...QUIZ_QUESTION_BASE.content,
2023-10-02 19:43:07 +00:00
innerNameCheck: false,
innerName: "",
text: "",
2023-10-04 11:35:02 +00:00
picture: "",
originalPicture: "",
2023-10-02 19:43:07 +00:00
video: "",
},
};