/** * Documentation Handler * * MCP handler for documentation analysis and generation tools */ import type { MCPToolResult } from "../../types/mcp-types.js"; /** * MCP handler for documentation analysis and generation tools. * * Provides tools to analyze documentation coverage, find missing docs, * validate code examples, and generate JSDoc/TSDoc templates. */ export declare class DocumentationHandler { private service; /** * @param projectRoot - Root directory of the project to analyze */ constructor(projectRoot: string); handleDocAnalyze(args: { files?: string[]; includePrivate?: boolean; minCoverage?: number; }): Promise; handleDocMissing(args: { files?: string[]; includePrivate?: boolean; entityTypes?: string[]; }): Promise; handleDocValidate(args: { files?: string[]; }): Promise; handleDocGenerate(args: { files?: string[]; includePrivate?: boolean; maxTemplates?: number; }): Promise; } //# sourceMappingURL=documentation-handler.d.ts.map