Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface ChoiceInputConfig

    interface ChoiceInputConfig {
        choices:
            | any[]
            | Record<string | number, any>
            | (() => any[] | Record<string | number, any>);
        labelAttr?: string;
        options: FormSelectOption[];
        valueAttr?: string;
    }
    Index

    Properties

    choices:
        | any[]
        | Record<string | number, any>
        | (() => any[] | Record<string | number, any>)
    labelAttr?: string
    options: FormSelectOption[]
    valueAttr?: string