Update code
This commit is contained in:
44
dev-assistant-mcp/dist/tools/searchCode.d.ts
vendored
Normal file
44
dev-assistant-mcp/dist/tools/searchCode.d.ts
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
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
|
||||
Reference in New Issue
Block a user