(type: any)
| 205 | * @param type A type which may have its own (non-inherited) `ɵprov`. |
| 206 | */ |
| 207 | export function getInjectableDef<T>(type: any): ɵɵInjectableDeclaration<T> | null { |
| 208 | return getOwnDefinition(type, NG_PROV_DEF); |
| 209 | } |
| 210 | |
| 211 | export function isInjectable(type: any): boolean { |
| 212 | return getInjectableDef(type) !== null; |
no test coverage detected
searching dependent graphs…