44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
export declare const searchCodeTool: {
|
|
name: string;
|
|
description: string;
|
|
inputSchema: {
|
|
type: "object";
|
|
properties: {
|
|
project_path: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
query: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
mode: {
|
|
type: string;
|
|
description: string;
|
|
enum: string[];
|
|
};
|
|
includes: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
case_sensitive: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
max_results: {
|
|
type: string;
|
|
description: string;
|
|
};
|
|
};
|
|
required: string[];
|
|
};
|
|
};
|
|
export declare function executeSearchCode(args: {
|
|
project_path: string;
|
|
query: string;
|
|
mode?: string;
|
|
includes?: string;
|
|
case_sensitive?: boolean;
|
|
max_results?: number;
|
|
}): Promise<string>;
|
|
//# sourceMappingURL=searchCode.d.ts.map
|