(doc: ApiDoc)
| 46 | } |
| 47 | |
| 48 | export function isDeprecatedDoc(doc: ApiDoc): boolean { |
| 49 | return hasJsDocTag(doc, 'deprecated'); |
| 50 | } |
| 51 | |
| 52 | /** Whether the given document is annotated with the "@docs-primary-export" jsdoc tag. */ |
| 53 | export function isPrimaryExportDoc(doc: ApiDoc): boolean { |
no test coverage detected