27 lines
451 B
TypeScript
27 lines
451 B
TypeScript
|
|
import type { QuizQuestionPage } from "../model/questionTypes/page";
|
||
|
|
|
||
|
|
export const QuizQuestionPageEmpty: Omit<QuizQuestionPage, "id"> = {
|
||
|
|
title: "",
|
||
|
|
type: "page",
|
||
|
|
content: {
|
||
|
|
innerNameCheck: false,
|
||
|
|
innerName: "",
|
||
|
|
text: "",
|
||
|
|
video: "",
|
||
|
|
hint: {
|
||
|
|
text: "",
|
||
|
|
video: "",
|
||
|
|
},
|
||
|
|
rule: {
|
||
|
|
or: true,
|
||
|
|
show: true,
|
||
|
|
reqs: [
|
||
|
|
{
|
||
|
|
id: "",
|
||
|
|
vars: [],
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|