Represents a private interface for a Icon field.

interface IIconFieldPrivate<Data = IAnything> {
    click: (e: MouseEvent<any>) => void | Promise<void>;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the Icon field.

Hierarchy (View Summary)

Properties

Properties

click: (e: MouseEvent<any>) => void | Promise<void>