Whether the given method member is listed as an internal member.
(memberDoc: MemberDoc)
| 55 | |
| 56 | /** Whether the given method member is listed as an internal member. */ |
| 57 | function _isInternalMember(memberDoc: MemberDoc): boolean { |
| 58 | return INTERNAL_METHODS.includes(memberDoc.name); |
| 59 | } |
| 60 | |
| 61 | /** Whether the given doc has a @docs-private tag set. */ |
| 62 | function _hasDocsPrivateTag(doc: ApiDoc): boolean { |
no outgoing calls
no test coverage detected
searching dependent graphs…