Stone.js API
    Preparing search index...

    Interface BlueprintContext<BlueprintType, ModuleType>

    ConfigContext Interface.

    Represents the context object for configuration, which contains the modules and blueprint used to configure the system.

    interface BlueprintContext<
        BlueprintType extends IBlueprint = IBlueprint,
        ModuleType = ClassType | PipeClass,
    > {
        blueprint: BlueprintType;
        modules: ModuleType[];
    }

    Type Parameters

    Index
    blueprint: BlueprintType

    The configuration blueprint.

    modules: ModuleType[]

    List of configuration modules.