@douglasneuroinformatics/libui-form-types
    Preparing search index...

    Type Alias BaseFormField

    The basic properties common to all field kinds

    type BaseFormField = {
        description?: string;
        disabled?: boolean;
        kind: StaticFieldKind;
        label: string;
    }
    Index
    description?: string

    An optional description of this field

    disabled?: boolean

    Whether or not the field is disabled

    Discriminator key

    label: string

    The label to be displayed to the user