Files
bigwo/dev-assistant-mcp/dist/tools/execCommand.d.ts

28 lines
682 B
TypeScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
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