(doc: ApiDoc)
| 50 | |
| 51 | /** Gets the @docs-public tag from the given document if present. */ |
| 52 | export function getDocsPublicTag(doc: ApiDoc): Tag | undefined { |
| 53 | return findJsDocTag(doc, 'docs-public'); |
| 54 | } |
| 55 | |
| 56 | /** Whether the given method member is listed as an internal member. */ |
| 57 | function _isInternalMember(memberDoc: MemberDoc): boolean { |
no test coverage detected
searching dependent graphs…