mp-lens
Version:
微信小程序分析工具 (Unused Code, Dependencies, Visualization)
10 lines (9 loc) • 370 B
TypeScript
import { AnalyzerOptions } from '../types/command-options';
import { ProjectStructure } from './project-structure';
interface AnalysisResult {
projectStructure: ProjectStructure;
unusedFiles: string[];
reachableNodeIds: Set<string>;
}
export declare function analyzeProject(projectRoot: string, options: AnalyzerOptions): Promise<AnalysisResult>;
export {};