MCPcopy
hub / github.com/fish2018/pansou / SearchRequest

Interface SearchRequest

typescript/src/utils/http-client.ts:8–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6 * 搜索请求参数
7 */
8export 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 * 网盘链接

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected