39 lines
966 B
TypeScript
39 lines
966 B
TypeScript
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
|