What it does
Injector interface
How to use
Class Overview
class Injector {staticTHROW_IF_NOT_FOUND: _THROW_IF_NOT_FOUND
staticNULL: Injector
get(token: any, notFoundValue?: any) : any
}
Class Description
For more details, see the Dependency Injection Guide.
Example
Injector returns itself when given Injector as a token:
Class Details
get(token: any, notFoundValue?: any) : any
Retrieves an instance from the injector based on the provided token. If not found:
- Throws NoProviderError if no
notFoundValuethat is not equal to Injector.THROW_IF_NOT_FOUND is given - Returns the
notFoundValueotherwise
exported from @angular/core/index, defined in @angular/core/src/di/injector.ts