Type Alias: ComponentEventHandlerClass()<IncomingEventType, OutgoingResponseType>
Type Alias: ComponentEventHandlerClass()<IncomingEventType, OutgoingResponseType>
type ComponentEventHandlerClass<IncomingEventType, OutgoingResponseType> = (...args) => IComponentEventHandler<IncomingEventType, OutgoingResponseType>;
Represents a component event handler class.
Type Parameters
IncomingEventType
IncomingEventType extends IIncomingEvent
The type representing the incoming event.
OutgoingResponseType
OutgoingResponseType = unknown
The type representing the outgoing response.
Parameters
args
...any[]
Returns
IComponentEventHandler<IncomingEventType, OutgoingResponseType>
