Type alias QuizQuestion_MultipleChoiceWithMultipleRightAnswers

QuizQuestion_MultipleChoiceWithMultipleRightAnswers: QuizQuestionBase & {
    options: {
        answers: string[];
    };
    type: MULTIPLE_CHOICE_WITH_MULTIPLE_RIGHT_ANSWERS;
}

Generated using TypeDoc