Documentation - v1.2.0-alpha.3
    Preparing search index...

    An instance of a choice that can be used to render a choice to a user or recognize something a user picked.

    interface Choice {
        action?: CardAction;
        synonyms?: string[];
        value: string;
    }
    Index

    Properties

    action?: CardAction

    An optional action associated with the choice, such as a button click.

    synonyms?: string[]

    Optional synonyms that can be used to recognize the choice.

    value: string

    The value of the choice, which is used to identify the choice.