@origindot./zigzag
Version:
Comprehensive MCP server providing AI agents with visual, development, and design validation tools
21 lines • 558 B
TypeScript
import { Tool, ToolResult } from '../types/tools.js';
export declare class UIInspectTool implements Tool {
definition: {
name: string;
description: string;
inputSchema: {
type: string;
properties: {
target: {
type: string;
description: string;
};
};
required: string[];
};
};
execute(args: {
target: string;
}): Promise<ToolResult>;
}
//# sourceMappingURL=ui-inspect-simple.d.ts.map