Update code
This commit is contained in:
28
dev-assistant-mcp/dist/tools/execCommand.d.ts
vendored
Normal file
28
dev-assistant-mcp/dist/tools/execCommand.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
export declare const execCommandTool: {
|
||||
name: string;
|
||||
description: string;
|
||||
inputSchema: {
|
||||
type: "object";
|
||||
properties: {
|
||||
command: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
cwd: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
timeout: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
};
|
||||
required: string[];
|
||||
};
|
||||
};
|
||||
export declare function executeExecCommand(args: {
|
||||
command: string;
|
||||
cwd?: string;
|
||||
timeout?: number;
|
||||
}): Promise<string>;
|
||||
//# sourceMappingURL=execCommand.d.ts.map
|
||||
Reference in New Issue
Block a user