(value: Type<T>)
| 31 | } |
| 32 | |
| 33 | export function isComponent<T>(value: Type<T>): value is ComponentType<T> { |
| 34 | return !!getComponentDef(value); |
| 35 | } |
| 36 | |
| 37 | function getDependencyTypeForError(type: Type<any>) { |
| 38 | if (getComponentDef(type)) return 'component'; |
no test coverage detected
searching dependent graphs…