| 59 | let active = false; |
| 60 | |
| 61 | interface TagResult { |
| 62 | name: string; |
| 63 | display: string; |
| 64 | category: number | string; |
| 65 | count: number; |
| 66 | aliases?: string[]; |
| 67 | matchedVia?: 'alias' | 'translation'; |
| 68 | matchedAlias?: string; |
| 69 | matchedTerm?: string; |
| 70 | } |
| 71 | |
| 72 | // -- Utilities (ported from Enso) -- |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected