sesaparcours
    Preparing search index...
    interface IDisplayParamSelect {
        choices: Choice[];
        container?: HTMLElement;
        inputProps?: Partial<HTMLSelectElement> & {
            heading?: string;
            name: string;
            onChange?: (choice: Choice) => void;
            select?: number;
        };
        persistent?: boolean;
        type: "select";
    }

    Hierarchy (View Summary)

    Index

    Properties

    choices: Choice[]
    container?: HTMLElement
    inputProps?: Partial<HTMLSelectElement> & {
        heading?: string;
        name: string;
        onChange?: (choice: Choice) => void;
        select?: number;
    }
    persistent?: boolean
    type: "select"