( impl: (<T>(token: ProviderToken<T>, flags?: InternalInjectFlags) => T | null) | undefined, )
| 33 | * Sets the current inject implementation. |
| 34 | */ |
| 35 | export function setInjectImplementation( |
| 36 | impl: (<T>(token: ProviderToken<T>, flags?: InternalInjectFlags) => T | null) | undefined, |
| 37 | ): (<T>(token: ProviderToken<T>, flags?: InternalInjectFlags) => T | null) | undefined { |
| 38 | const previous = _injectImplementation; |
| 39 | _injectImplementation = impl; |
| 40 | return previous; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Injects `root` tokens in limp mode. |
no outgoing calls
no test coverage detected
searching dependent graphs…