Type alias SettingsTreeField

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

Type declaration

  • Optional disabled?: boolean

    True if the field is disabled.

  • Optional error?: string

    Optional message indicating any error state for the field.

  • Optional help?: string

    Optional help text to explain the purpose of the field.

  • label: string

    The label displayed alongside the field.

  • Optional readonly?: boolean

    True if the field is readonly.