(definition: DirectiveDef<T> | ComponentDef<T>)
| 647 | } |
| 648 | |
| 649 | function initFeatures<T>(definition: DirectiveDef<T> | ComponentDef<T>): void { |
| 650 | definition.features?.forEach((fn) => fn(definition)); |
| 651 | } |
| 652 | |
| 653 | export function extractDefListOrFactory<T>( |
| 654 | dependencies: TypeOrFactory<DependencyTypeList> | undefined, |
no test coverage detected
searching dependent graphs…