Represents a private interface for a Button field.

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

Type Parameters

  • Data = IAnything

    The type of data associated with the Button field.

Hierarchy (View Summary)

Properties

Properties

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