( value: ClassProvider | ConstructorProvider | StaticClassProvider, )
| 702 | } |
| 703 | |
| 704 | function hasDeps( |
| 705 | value: ClassProvider | ConstructorProvider | StaticClassProvider, |
| 706 | ): value is ClassProvider & {deps: any[]} { |
| 707 | return !!(value as any).deps; |
| 708 | } |
| 709 | |
| 710 | function hasOnDestroy(value: any): value is OnDestroy { |
| 711 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…