feat(core): add source to StaticInjectorError
message (#20817)
Closes #19302 PR Close #20817
This commit is contained in:

committed by
Jason Aden

parent
634d33f5dd
commit
b7738e1fe5
7
tools/public_api_guard/core/core.d.ts
vendored
7
tools/public_api_guard/core/core.d.ts
vendored
@ -476,7 +476,12 @@ export declare abstract class Injector {
|
||||
/** @deprecated */ abstract get(token: any, notFoundValue?: any): any;
|
||||
static NULL: Injector;
|
||||
static THROW_IF_NOT_FOUND: Object;
|
||||
static create(providers: StaticProvider[], parent?: Injector): Injector;
|
||||
/** @deprecated */ static create(providers: StaticProvider[], parent?: Injector): Injector;
|
||||
static create(options: {
|
||||
providers: StaticProvider[];
|
||||
parent?: Injector;
|
||||
name?: string;
|
||||
}): Injector;
|
||||
}
|
||||
|
||||
/** @stable */
|
||||
|
Reference in New Issue
Block a user