vibe-coder-mcp
Version:
Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.
10 lines • 474 B
TypeScript
import { ImportInfo } from '../codeMapModel.js';
import { ResolvedImportResult } from './importResolver.no-cache.js';
export interface ResolvedImport extends Omit<ImportInfo, 'resolvedPath'> {
resolvedPath?: string | ResolvedImportResult;
}
export declare function resolveImportsInFile(filePath: string, language: string, options?: {
projectRoot?: string;
expandSecurityBoundary?: boolean;
}): Promise<ResolvedImport[]>;
//# sourceMappingURL=testHelpers.d.ts.map