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