(doc: ClassExportDoc)
| 42 | } |
| 43 | |
| 44 | export function isNgModule(doc: ClassExportDoc): boolean { |
| 45 | return hasClassDecorator(doc, 'NgModule'); |
| 46 | } |
| 47 | |
| 48 | export function isDeprecatedDoc(doc: ApiDoc): boolean { |
| 49 | return hasJsDocTag(doc, 'deprecated'); |
no test coverage detected
searching dependent graphs…