Creating Plot Twists
    Preparing search index...

    Type Alias SelectDef

    A select option definition for twist configuration. Renders as a dropdown in the Flutter UI.

    type SelectDef = {
        type: "select";
        label: string;
        description?: string;
        choices: ReadonlyArray<{ value: string; label: string }>;
        default: string;
    }
    Index

    Properties

    type: "select"
    label: string
    description?: string
    choices: ReadonlyArray<{ value: string; label: string }>
    default: string