frontPanel/src/constants/file.ts
2023-10-04 12:07:59 +03:00

16 lines
363 B
TypeScript

import { QUIZ_QUESTION_BASE } from "./base";
import type { QuizQuestionFile } from "../model/questionTypes/file";
export const QUIZ_QUESTION_FILE: Omit<QuizQuestionFile, "id"> = {
...QUIZ_QUESTION_BASE,
type: "file",
content: {
...QUIZ_QUESTION_BASE.content,
required: false,
innerNameCheck: false,
innerName: "",
type: "all",
},
};