frontPanel/src/constants/page.ts

27 lines
451 B
TypeScript
Raw Normal View History

2023-10-02 19:43:07 +00:00
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: [],
},
],
},
},
};