Interface Question

interface Question {
    choices: Choice[];
    correctId?: string;
    id: string;
    multiple: boolean;
    title: string;
    type: QuestionType;
}

Properties

choices: Choice[]
correctId?: string
id: string
multiple: boolean
title: string