vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
27 lines • 1.26 kB
TypeScript
import { BaseLanguageHandler } from './base.js';
import { SyntaxNode } from '../parser.js';
import { FunctionExtractionOptions } from '../types.js';
export declare class VueHandler 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 isTemplateElement;
private isStyleElement;
private isVueLifecycleHook;
private isInComputedSection;
private isInWatchSection;
private isInMethodsSection;
protected extractClassName(node: SyntaxNode, sourceCode: string): string;
private extractComponentName;
protected extractImportPath(node: SyntaxNode, sourceCode: string): string;
private isScriptElement;
private findScriptNode;
protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined;
protected extractClassComment(node: SyntaxNode, sourceCode: string): string | undefined;
detectFramework(sourceCode: string): string | null;
}
//# sourceMappingURL=vue.d.ts.map