(doc: ClassExportDoc)
| 34 | } |
| 35 | |
| 36 | export function isComponent(doc: ClassExportDoc): boolean { |
| 37 | return hasClassDecorator(doc, 'Component'); |
| 38 | } |
| 39 | |
| 40 | export function isService(doc: ClassExportDoc): boolean { |
| 41 | return hasClassDecorator(doc, 'Injectable') || hasClassDecorator(doc, 'Service'); |
no test coverage detected
searching dependent graphs…