Type Alias: LifecycleHookType<BlueprintType, AdapterContextType, RawResponseType, IncomingEventType, OutgoingResponseType>
Type Alias: LifecycleHookType<BlueprintType, AdapterContextType, RawResponseType, IncomingEventType, OutgoingResponseType>
type LifecycleHookType<BlueprintType, AdapterContextType, RawResponseType, IncomingEventType, OutgoingResponseType> = BlueprintHookType<BlueprintType> & AdapterHookType<AdapterContextType, RawResponseType> & KernelHookType<IncomingEventType, OutgoingResponseType>;
Represents the application lifecycle hooks.
Type Parameters
BlueprintType
BlueprintType extends IBlueprint = IBlueprint
AdapterContextType
AdapterContextType = unknown
RawResponseType
RawResponseType = unknown
IncomingEventType
IncomingEventType extends IncomingEvent = IncomingEvent
OutgoingResponseType
OutgoingResponseType extends OutgoingResponse = OutgoingResponse
