(fn: DeclarationReflection)
| 108 | * @returns the function summary string if found |
| 109 | */ |
| 110 | export function findFnSummary(fn: DeclarationReflection): string | undefined { |
| 111 | return findFnTag(fn, "@summary"); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Find function description in a function. |
no test coverage detected