Theia API Documentation v1.70.0
    Preparing search index...

    Restored questions display the question, options, and any previously selected answer, but do not allow new selections.

    interface QuestionContentData {
        header?: string;
        multiSelect?: boolean;
        options: { description?: string; text: string; value?: string }[];
        question: string;
        selectedOption?: { text: string; value?: string };
        selectedOptions?: { text: string; value?: string }[];
    }
    Index

    Properties

    header?: string
    multiSelect?: boolean
    options: { description?: string; text: string; value?: string }[]
    question: string
    selectedOption?: { text: string; value?: string }
    selectedOptions?: { text: string; value?: string }[]