UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

18 lines 599 B
import { ApiCall, FileInfo } from './types'; /** * Extract all API calls from frontend code */ export declare function extractCalls(dbPath: string): ApiCall[]; /** * Extract API calls by slice */ export declare function extractCallsBySlice(dbPath: string, sliceNames: string[]): Map<string, ApiCall[]>; /** * Get file info for calls */ export declare function getCallFileInfo(dbPath: string, fileIds: number[]): Map<number, FileInfo>; /** * Extract path from various URL formats */ export declare function extractPathFromUrl(url: string): string; //# sourceMappingURL=call-extractor.d.ts.map