Represents the properties of a line field.

interface ILineFieldProps<Data = IAnything, Payload = IAnything> {
    groupRef?: (element?: null | HTMLDivElement) => void;
    lineTransparent?: boolean;
    title?: string;
}

Type Parameters

  • Data = IAnything

    The type of data for the field.

  • Payload = IAnything

    The type of payload for the field.

Hierarchy (View Summary)

Properties

groupRef?: (element?: null | HTMLDivElement) => void

Represents a reference to a group of fields.

lineTransparent?: boolean

Retrieves the value of the 'lineTransparent' property from the provided object.

The type of data associated with the field.

The type of payload associated with the field.

title?: string

Retrieves the 'title' property from the provided object type with the specified properties.

The object type from which to retrieve the property.

The property key to pick from the object type.

The object from which to pick the property.

The key of the property to be picked.

The value of the specified property from the object type.