(entry)
| 103 | } |
| 104 | |
| 105 | function getAlt(entry) { |
| 106 | return entry |
| 107 | .tags |
| 108 | ?.filter(tag => tag.title === 'alt') |
| 109 | ?.map(tag => tag.description) |
| 110 | ?.join('\n') || undefined; |
| 111 | } |
| 112 | |
| 113 | // Process constants, typedefs, and properties |
| 114 | const processedNames = new Set(); |