| 4 | export default analyzer; |
| 5 | |
| 6 | export interface Module { |
| 7 | id: string; |
| 8 | size: number; |
| 9 | origSize: number; |
| 10 | dependents: string[]; |
| 11 | percent: number; |
| 12 | reduction: number; |
| 13 | usedExports: string[]; |
| 14 | unusedExports: string[]; |
| 15 | } |
| 16 | |
| 17 | export interface AnalyzerOptions { |
| 18 | stdout?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…