(doc: ClassExportDoc, decoratorName: string)
| 73 | } |
| 74 | |
| 75 | export function hasClassDecorator(doc: ClassExportDoc, decoratorName: string): boolean { |
| 76 | return doc.docType == 'class' && hasDecorator(doc, decoratorName); |
| 77 | } |
| 78 | |
| 79 | export function hasDecorator(doc: HasDecoratorsDoc, decoratorName: string): boolean { |
| 80 | return ( |
no test coverage detected
searching dependent graphs…