vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
24 lines • 1.23 kB
TypeScript
import { JavaScriptHandler } from './javascript.js';
import { SyntaxNode } from '../parser.js';
import { FunctionExtractionOptions } from '../types.js';
export declare class TypeScriptHandler extends JavaScriptHandler {
protected getFunctionQueryPatterns(): string[];
protected getClassQueryPatterns(): string[];
protected getImportQueryPatterns(): string[];
protected extractFunctionName(node: SyntaxNode, sourceCode: string, options?: FunctionExtractionOptions): string;
protected extractClassName(node: SyntaxNode, sourceCode: string): string;
protected extractParentClass(node: SyntaxNode, sourceCode: string): string | undefined;
protected extractImplementedInterfaces(node: SyntaxNode, sourceCode: string): string[] | undefined;
protected extractFunctionComment(node: SyntaxNode, sourceCode: string): string | undefined;
protected extractClassProperties(node: SyntaxNode, sourceCode: string): Array<{
name: string;
type?: string;
comment?: string;
startLine: number;
endLine: number;
accessModifier?: string;
isStatic?: boolean;
}>;
detectFramework(sourceCode: string): string | null;
}
//# sourceMappingURL=typescript.d.ts.map