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";
|
|
|
|
|
2023-12-31 02:53:25 +00:00
|
|
|
export const QUIZ_QUESTION_RESULT: Omit<
|
|
|
|
QuizQuestionResult,
|
|
|
|
"id" | "backendId"
|
|
|
|
> = {
|
2023-12-07 21:30:26 +00:00
|
|
|
...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,
|
2023-12-31 02:53:25 +00:00
|
|
|
usage: true,
|
2024-01-10 16:53:37 +00:00
|
|
|
redirect: "",
|
2023-12-07 21:30:26 +00:00
|
|
|
},
|
|
|
|
};
|