UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

22 lines 1.12 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; export declare class JsonHandler extends BaseLanguageHandler { protected options?: { filePath?: string; }; protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private isInOpenApiContext; private isInCloudFormationContext; private isInPackageJsonContext; private isInTsConfigContext; protected extractClassName(node: SyntaxNode, sourceCode: string): string; protected extractImportPath(node: SyntaxNode, sourceCode: string): string; protected extractFunctionComment(node: SyntaxNode, sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, sourceCode: string): string | undefined; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=json.d.ts.map