Interface IDependencyRegistryEngine

Interface to facilitate the ability to add custom IOC containers by conforming to the proxy of adding and retrieval of services

interface IDependencyRegistryEngine {
    addService(serviceConstructor: any): void;
    clearAllServices(): void;
    getAllServices(): Set<unknown>;
    getService<T>(classType: T): null | InstanceOf<T>;
}

Implemented by

Methods