Interface Registration<T>

interface Registration<T> {
    instance?: InstanceRef<T>;
    options?: RegistrationOptions;
    provider: Provider<T>;
}

Type Parameters

  • T = any

Properties

instance?: InstanceRef<T>
provider: Provider<T>