Type Alias SnippetQuestionInput

SnippetQuestionInput: { label?: string } & (
    | { answerToken: string; defaultAnswer: SnippetAnswerTypes }
    | { answerTokens: string[]; defaultAnswers: SnippetAnswerTypes[] }
) & (
    | { type: string }
    | { max?: number; min?: number; type: "number" | "positionPicker" }
    | { options: Record<string, string>; type: "dropdown" }
    | { type: "yesno" }
)