28 lines
682 B
TypeScript
28 lines
682 B
TypeScript
|
|
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
|