frontPanel/src/constants/result.ts

22 lines
443 B
TypeScript
Raw Normal View History

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,
video: "",
2023-12-07 21:30:26 +00:00
innerName: "",
text: "",
price: [0],
useImage: true,
2023-12-31 02:53:25 +00:00
usage: true,
2023-12-07 21:30:26 +00:00
},
};