fix QuizType type

This commit is contained in:
nflnkr 2024-02-16 18:12:33 +03:00
parent f6c8b3b13b
commit 327fd81ec6

@ -4,7 +4,7 @@ export type QuizStartpageType = "standard" | "expanded" | "centered" | null;
export type QuizStartpageAlignType = "left" | "right" | "center";
export type QuizType = "quiz" | "form";
export type QuizType = "quiz" | "form" | null;
export type QuizResultsType = true | null;