@discordx/di
    Preparing search index...

    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): InstanceOf<T> | null;
    }

    Implemented by

    Index

    Methods