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.

18 lines 1.09 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; export declare class GraphQLHandler extends BaseLanguageHandler { protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private hasArguments; protected extractClassName(node: SyntaxNode, sourceCode: string): string; protected extractImplementedInterfaces(node: SyntaxNode, sourceCode: string): string[] | undefined; protected extractImportPath(node: SyntaxNode, sourceCode: string): string; protected extractFunctionComment(node: SyntaxNode, sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, sourceCode: string): string | undefined; private parseGraphQLDescription; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=graphql.d.ts.map