Interface FormCustomFieldDefinitionValues<TLabelType>

A single value inside of a custom field type that has a list of values

interface FormCustomFieldDefinitionValues<TLabelType> {
    label: TLabelType;
    value: string;
}

Type Parameters

  • TLabelType = string

Properties

Properties

label: TLabelType

Human readable label for the value

value: string

Internal value

Generated using TypeDoc