| 30 | * 搜索结果项 |
| 31 | */ |
| 32 | export interface SearchResult { |
| 33 | message_id: string; |
| 34 | unique_id: string; |
| 35 | channel: string; |
| 36 | datetime: string; |
| 37 | title: string; |
| 38 | content: string; |
| 39 | links: Link[]; |
| 40 | tags?: string[]; |
| 41 | images?: string[]; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * 合并后的网盘链接 |
nothing calls this directly
no outgoing calls
no test coverage detected