28 lines
481 B
TypeScript
28 lines
481 B
TypeScript
![]() |
import type { QuizQuestionFile } from "../model/questionTypes/file";
|
||
|
|
||
|
export const QuizQuestionFileEmpty: Omit<QuizQuestionFile, "id"> = {
|
||
|
title: "",
|
||
|
type: "file",
|
||
|
content: {
|
||
|
required: false,
|
||
|
innerNameCheck: false,
|
||
|
innerName: "",
|
||
|
autofill: false,
|
||
|
type: "all",
|
||
|
hint: {
|
||
|
text: "",
|
||
|
video: "",
|
||
|
},
|
||
|
rule: {
|
||
|
or: true,
|
||
|
show: true,
|
||
|
reqs: [
|
||
|
{
|
||
|
id: "",
|
||
|
vars: [],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
};
|