Home > widget-integration > EventCallbackPair

EventCallbackPair type

Pair of event name and callback for bulk subscription operations.

Signature:

export type EventCallbackPair = {
	event: EventName;
	callback: Callback;
};

References: EventName, Callback