Stone.js API
    Preparing search index...

    Interface BlueprintHookType<BlueprintType, ContextType>

    Blueprint Hook Type.

    Represents a hook that can either be synchronous or asynchronous.

    interface BlueprintHookType<
        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[],
    >[]