Interface: IBlueprintHook<BlueprintType, ContextType>
Interface: IBlueprintHook<BlueprintType, ContextType>
Blueprint Hook interface.
Represents a hook that can either be synchronous or asynchronous.
Type Parameters
BlueprintType
BlueprintType extends IBlueprint = IBlueprint
ContextType
ContextType extends BlueprintContext<BlueprintType> = BlueprintContext<BlueprintType>
Properties
onBlueprintMiddlewareProcessed?
optional onBlueprintMiddlewareProcessed: PipelineHookListener<ContextType, BlueprintType, any[]>;
onBlueprintPrepared?
optional onBlueprintPrepared: BlueprintHookListener<BlueprintType, ContextType>;
onPreparingBlueprint?
optional onPreparingBlueprint: BlueprintHookListener<BlueprintType, ContextType>;
onProcessingBlueprintMiddleware?
optional onProcessingBlueprintMiddleware: PipelineHookListener<ContextType, BlueprintType, any[]>;
