(doc: ClassExportDoc)
| 38 | } |
| 39 | |
| 40 | export function isService(doc: ClassExportDoc): boolean { |
| 41 | return hasClassDecorator(doc, 'Injectable') || hasClassDecorator(doc, 'Service'); |
| 42 | } |
| 43 | |
| 44 | export function isNgModule(doc: ClassExportDoc): boolean { |
| 45 | return hasClassDecorator(doc, 'NgModule'); |
no test coverage detected
searching dependent graphs…