Type Alias SettingsTreeField

SettingsTreeField: SettingsTreeFieldValue & {
    disabled?: boolean;
    error?: string;
    help?: string;
    label: string;
    readonly?: boolean;
}

Type declaration

  • Optionaldisabled?: boolean

    True if the field is disabled.

  • Optionalerror?: string

    Optional message indicating any error state for the field.

  • Optionalhelp?: string

    Optional help text to explain the purpose of the field.

  • label: string

    The label displayed alongside the field.

  • Optionalreadonly?: boolean

    True if the field is readonly.