Interface ISyncFactory<T, M>

A factory interface that produces an entity of type T

interface ISyncFactory<T, M> {
    get(module, options, ctx): T;
    getModule(): M;
    makeBindContext(module, key): FactoryBindContext<M, T, ISyncFactory<T, M>>;
}

Type Parameters

Implemented by

Methods