Interface ManagerFactoryArg<TConfig>

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

Type Parameters

  • TConfig = unknown

Hierarchy (view full)

Properties

Properties

config?: TConfig
name?: string
type: string | ManagerConstructor<TConfig>