Type Alias: MixedEventHandler<IncomingEventType, OutgoingResponseType>
Type Alias: MixedEventHandler<IncomingEventType, OutgoingResponseType>
type MixedEventHandler<IncomingEventType, OutgoingResponseType> =
| MetaEventHandler<IncomingEventType, OutgoingResponseType>
| FunctionalEventHandler<IncomingEventType, OutgoingResponseType>
| MetaComponentEventHandler<IncomingEventType, OutgoingResponseType>
| {
action: string;
};
Represents a mixed event handler.
Type Parameters
IncomingEventType
IncomingEventType
extends IIncomingEvent
= IIncomingEvent
The type representing the incoming event.
OutgoingResponseType
OutgoingResponseType
= unknown
The type representing the outgoing response.