23 lines
576 B
TypeScript
23 lines
576 B
TypeScript
|
|
export declare const buildProjectTool: {
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
inputSchema: {
|
||
|
|
type: "object";
|
||
|
|
properties: {
|
||
|
|
project_path: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
command: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
required: string[];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
export declare function executeBuildProject(args: {
|
||
|
|
project_path: string;
|
||
|
|
command?: string;
|
||
|
|
}): Promise<string>;
|
||
|
|
//# sourceMappingURL=buildProject.d.ts.map
|