Stone.js API
    Preparing search index...

    Interface IBlueprintBuilder<BlueprintType>

    Represents a IBlueprintBuilder type.

    interface IBlueprintBuilder<BlueprintType extends IBlueprint = IBlueprint> {
        build: (modules: unknown[]) => Promise<BlueprintType>;
    }

    Type Parameters

    Implemented by

    Index
    build: (modules: unknown[]) => Promise<BlueprintType>

    Build the configuration blueprint by extracting metadata from the provided modules.

    Type Declaration

      • (modules: unknown[]): Promise<BlueprintType>
      • Parameters

        • modules: unknown[]

          The modules to build the configuration from.

        Returns Promise<BlueprintType>

        The configuration blueprint.