(token: string, path: string[])
| 28 | |
| 29 | /** Creates a circular dependency runtime error including a dependency path in the error message. */ |
| 30 | export function cyclicDependencyErrorWithDetails(token: string, path: string[]): Error { |
| 31 | return augmentRuntimeError(cyclicDependencyError(token, path), null); |
| 32 | } |
| 33 | |
| 34 | export function throwMixedMultiProviderError() { |
| 35 | throw new Error(`Cannot mix multi providers and regular providers`); |
no test coverage detected
searching dependent graphs…