@storehouse/core - v2.1.0
    Preparing search index...

    Interface ManagerFactoryArg<TConfig>

    Complete arguments passed to the factory to create a manager

    interface ManagerFactoryArg<TConfig = unknown> {
        config?: TConfig;
        name?: string;
        type: string | ManagerConstructor<TConfig>;
    }

    Type Parameters

    • TConfig = unknown

      Type of the configuration object

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    config?: TConfig

    Optional configuration specific to the manager type

    name?: string

    Optional name for the manager instance

    type: string | ManagerConstructor<TConfig>