30 lines
535 B
TypeScript
30 lines
535 B
TypeScript
![]() |
import type { QuizQuestionRating } from "../model/questionTypes/rating";
|
||
|
|
||
|
export const QuizQuestionRatingEmpty: Omit<QuizQuestionRating, "id"> = {
|
||
|
title: "",
|
||
|
type: "rating",
|
||
|
content: {
|
||
|
required: false,
|
||
|
innerNameCheck: false,
|
||
|
innerName: "",
|
||
|
steps: 5,
|
||
|
ratingExpanded: false,
|
||
|
ratingDescription: "",
|
||
|
form: "",
|
||
|
hint: {
|
||
|
text: "",
|
||
|
video: "",
|
||
|
},
|
||
|
rule: {
|
||
|
or: true,
|
||
|
show: true,
|
||
|
reqs: [
|
||
|
{
|
||
|
id: "",
|
||
|
vars: [],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
};
|