2023-12-07 21:30:26 +00:00
|
|
|
import { QUIZ_QUESTION_BASE } from "./base";
|
|
|
|
|
|
|
|
import type { QuizQuestionResult } from "../model/questionTypes/result";
|
|
|
|
import { nanoid } from "nanoid";
|
|
|
|
|
|
|
|
export const QUIZ_QUESTION_RESULT: Omit<QuizQuestionResult, "id" | "backendId"> = {
|
|
|
|
...QUIZ_QUESTION_BASE,
|
|
|
|
type: "result",
|
|
|
|
content: {
|
|
|
|
...QUIZ_QUESTION_BASE.content,
|
2023-12-07 22:56:31 +00:00
|
|
|
video: "",
|
2023-12-07 21:30:26 +00:00
|
|
|
innerName: "",
|
2023-12-07 22:56:31 +00:00
|
|
|
text: "",
|
|
|
|
price: [0],
|
2023-12-21 08:29:51 +00:00
|
|
|
useImage: true,
|
|
|
|
usage: true
|
2023-12-07 21:30:26 +00:00
|
|
|
},
|
|
|
|
};
|