Documentation
    Preparing search index...

    Type Alias FetchedQuestion<T>

    FetchedQuestion: DistinctQuestion<T> & {
        choices: ChoiceCollection<T>;
        default: any;
        message: string;
        type: string;
    }

    Represents a fetched answer.

    Type Parameters

    • T extends Answers = Answers

      The type of the answers.

    Type Declaration

    • choices: ChoiceCollection<T>

      The choices of the question.

    • default: any

      The default value of the question.

    • message: string

      The message to show to the user.

    • type: string

      The type of the question.