Type alias QuizQuestion_MultipleChoice

QuizQuestion_MultipleChoice: QuizQuestionBase & {
    options: {
        answers: string[];
    };
    type: MULTIPLE_CHOICE;
}

Generated using TypeDoc