(type: Type<any>)
| 385 | } |
| 386 | |
| 387 | export function extractDirectiveDef(type: Type<any>): DirectiveDef<any> | ComponentDef<any> | null { |
| 388 | return getComponentDef(type) || getDirectiveDef(type); |
| 389 | } |
| 390 | |
| 391 | /** |
| 392 | * @codeGenApi |
no test coverage detected
searching dependent graphs…