| 6 | * 搜索请求参数 |
| 7 | */ |
| 8 | export interface SearchRequest { |
| 9 | kw: string; // 搜索关键词 |
| 10 | channels?: string[]; // 搜索的频道列表 |
| 11 | conc?: number; // 并发搜索数量 |
| 12 | refresh?: boolean; // 强制刷新,不使用缓存 |
| 13 | res?: ResultType; // 结果类型 |
| 14 | src?: SourceType; // 数据来源类型 |
| 15 | plugins?: string[]; // 指定搜索的插件列表 |
| 16 | cloud_types?: CloudType[]; // 指定返回的网盘类型列表 |
| 17 | ext?: Record<string, any>; // 扩展参数 |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * 网盘链接 |
nothing calls this directly
no outgoing calls
no test coverage detected