2023-10-03 14:03:57 +00:00
|
|
|
import { QUIZ_QUESTION_BASE } from "./base";
|
|
|
|
|
2023-10-02 19:43:07 +00:00
|
|
|
import type { QuizQuestionFile } from "../model/questionTypes/file";
|
|
|
|
|
2023-10-03 14:03:57 +00:00
|
|
|
export const QUIZ_QUESTION_FILE: Omit<QuizQuestionFile, "id"> = {
|
|
|
|
...QUIZ_QUESTION_BASE,
|
2023-10-02 19:43:07 +00:00
|
|
|
type: "file",
|
|
|
|
content: {
|
2023-10-03 14:03:57 +00:00
|
|
|
...QUIZ_QUESTION_BASE.content,
|
2023-10-02 19:43:07 +00:00
|
|
|
required: false,
|
|
|
|
innerNameCheck: false,
|
|
|
|
innerName: "",
|
|
|
|
type: "all",
|
|
|
|
},
|
|
|
|
};
|