Skip to content

InjectedDependency

type InjectedDependency =
| InjectedDependencyBase & {
self: true;
skipSelf: false;
}
| InjectedDependencyBase & {
self: false;
skipSelf: boolean;
};

Defined in: packages/analyzer/src/types.ts:152

@Self() and @SkipSelf() are mutually exclusive per Angular DI (they target opposite ends of the element injector tree). When self: true, skipSelf is forced to false.