| 244 | |
| 245 | /** 全局搜索选项 */ |
| 246 | export interface GlobalSearchOptions { |
| 247 | matchCase: boolean |
| 248 | useRegex: boolean |
| 249 | matchWholeWord: boolean |
| 250 | /** 角色筛选 */ |
| 251 | roleFilter: 'all' | 'user' | 'assistant' |
| 252 | /** 时间范围筛选 */ |
| 253 | timeRange: 'all' | 'today' | 'week' | 'month' |
| 254 | /** 文件夹筛选 */ |
| 255 | folderIds?: string[] |
| 256 | } |
| 257 | |
| 258 | // ==================== Tab 类型定义 ==================== |
| 259 |
nothing calls this directly
no outgoing calls
no test coverage detected