Type Alias: LazyFactoryComponentEventHandler()<IncomingEventType, OutgoingResponseType>
Type Alias: LazyFactoryComponentEventHandler()<IncomingEventType, OutgoingResponseType>
type LazyFactoryComponentEventHandler<IncomingEventType, OutgoingResponseType> = () => Promise<FactoryComponentEventHandler<IncomingEventType, OutgoingResponseType>>;
Represents a lazy factory component event handler.
Type Parameters
IncomingEventType
IncomingEventType
extends IIncomingEvent
The type representing the incoming event.
OutgoingResponseType
OutgoingResponseType
= unknown
The type representing the outgoing response.
Returns
Promise
<FactoryComponentEventHandler
<IncomingEventType
, OutgoingResponseType
>>