frontPanel/src/constants/rating.ts

19 lines
442 B
TypeScript
Raw Normal View History

2023-10-03 14:03:57 +00:00
import { QUIZ_QUESTION_BASE } from "./base";
2023-10-02 19:43:07 +00:00
import type { QuizQuestionRating } from "../model/questionTypes/rating";
2023-10-03 14:03:57 +00:00
export const QUIZ_QUESTION_RATING: Omit<QuizQuestionRating, "id"> = {
...QUIZ_QUESTION_BASE,
2023-10-02 19:43:07 +00:00
type: "rating",
content: {
2023-10-03 14:03:57 +00:00
...QUIZ_QUESTION_BASE.content,
2023-10-02 19:43:07 +00:00
required: false,
innerNameCheck: false,
innerName: "",
steps: 5,
ratingExpanded: false,
ratingDescription: "",
2023-10-04 09:12:35 +00:00
form: "star",
2023-10-02 19:43:07 +00:00
},
};