(type: Type<unknown>)
| 82 | * @publicApi |
| 83 | */ |
| 84 | export function isStandalone(type: Type<unknown>): boolean { |
| 85 | const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef(type); |
| 86 | return def !== null && def.standalone; |
| 87 | } |
no test coverage detected
searching dependent graphs…