UNPKG

mp-lens

Version:

微信小程序分析工具 (Unused Code, Dependencies, Visualization)

10 lines (9 loc) 443 B
import { ProjectStructure } from '../../analyzer/project-structure'; /** * Generates HTML format graph */ export declare function generateHtmlGraph(projectStructure: ProjectStructure, reachableNodeIds: Set<string>, unusedFiles: string[], projectRoot: string, outputPath?: string): Promise<void>; /** * Generates JSON format graph */ export declare function generateJsonGraph(projectStructure: ProjectStructure, outputPath?: string): void;