( ref: DeclarationReflection | SignatureReflection, )
| 28 | * @returns the reflection summary string if found |
| 29 | */ |
| 30 | export function findSummary( |
| 31 | ref: DeclarationReflection | SignatureReflection, |
| 32 | ): string | undefined { |
| 33 | return findTag(ref, "@summary"); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Find reflection description. |