Type alias QuizOptionsSheetType

QuizOptionsSheetType: BasicWorksheetType & {
    description: string;
    multiple: boolean;
    options: {
        correct: boolean;
        id: string;
        label: string;
    }[];
    scoringMode: "TOTAL" | "PARTIAL";
    type: QUIZ_OPTIONS;
}

Type declaration

  • description: string
  • multiple: boolean
  • options: {
        correct: boolean;
        id: string;
        label: string;
    }[]
  • scoringMode: "TOTAL" | "PARTIAL"
  • type: QUIZ_OPTIONS