Interface InjectableRef<T>

interface InjectableRef<T> {
    modelClass: Type<T>;
    name: string;
    provideIn: "platform" | Type<CustomElementConstructor> | "root" | "any";
}

Type Parameters

  • T

Properties

modelClass: Type<T>
name: string
provideIn: "platform" | Type<CustomElementConstructor> | "root" | "any"