Stone.js API
    Preparing search index...

    Interface IBlueprintHook<BlueprintType, ContextType>

    Blueprint Hook interface.

    Represents a hook that can either be synchronous or asynchronous.

    interface IBlueprintHook<
        BlueprintType extends IBlueprint = IBlueprint,
        ContextType extends
            BlueprintContext<BlueprintType> = BlueprintContext<BlueprintType>,
    > {
        onBlueprintMiddlewareProcessed?: PipelineHookListener<
            ContextType,
            BlueprintType,
            any[],
        >;
        onBlueprintPrepared?: BlueprintHookListener<BlueprintType, ContextType>;
        onPreparingBlueprint?: BlueprintHookListener<BlueprintType, ContextType>;
        onProcessingBlueprintMiddleware?: PipelineHookListener<
            ContextType,
            BlueprintType,
            any[],
        >;
    }

    Type Parameters

    Index
    onBlueprintMiddlewareProcessed?: PipelineHookListener<
        ContextType,
        BlueprintType,
        any[],
    >
    onProcessingBlueprintMiddleware?: PipelineHookListener<
        ContextType,
        BlueprintType,
        any[],
    >