34 lines
845 B
TypeScript
34 lines
845 B
TypeScript
|
|
export declare const depManageTool: {
|
||
|
|
name: string;
|
||
|
|
description: string;
|
||
|
|
inputSchema: {
|
||
|
|
type: "object";
|
||
|
|
properties: {
|
||
|
|
project_path: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
action: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
enum: string[];
|
||
|
|
};
|
||
|
|
packages: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
dev: {
|
||
|
|
type: string;
|
||
|
|
description: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
required: string[];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
export declare function executeDepManage(args: {
|
||
|
|
project_path: string;
|
||
|
|
action: string;
|
||
|
|
packages?: string;
|
||
|
|
dev?: boolean;
|
||
|
|
}): Promise<string>;
|
||
|
|
//# sourceMappingURL=depManage.d.ts.map
|