UNPKG

@aquaori/deplens

Version:

A precise dependency analysis tool for npm and pnpm projects

28 lines 731 B
import { ArgumentsCamelCase } from 'yargs'; import { Result } from '../types'; /** * 分析项目依赖的主要函数 * @param args 命令行参数对象 */ export declare function analyzeProject(args: ArgumentsCamelCase<{ path: string; verbose: boolean; pnpm: boolean; silence: boolean; ignoreDep: string; ignorePath: string; ignoreFile: string; config: string; }>): Promise<void>; /** * 显示分析结果 * @param result 分析结果对象 * @param options 命令行选项 */ export declare function displayResults(result: Result, options: ArgumentsCamelCase<{ path: string; verbose: boolean; pnpm: boolean; silence: boolean; }>): void; //# sourceMappingURL=index.d.ts.map