( filePath: string, onProgress?: ImportProgressCallback )
| 223 | } |
| 224 | |
| 225 | export async function analyzeNewImport( |
| 226 | filePath: string, |
| 227 | onProgress?: ImportProgressCallback |
| 228 | ): Promise<AnalyzeNewImportResult> { |
| 229 | return sharedAnalyzeNewImport(filePath, onProgress ?? (() => {})) |
| 230 | } |
| 231 | |
| 232 | // ==================== Re-exports from parser ==================== |
| 233 |
no outgoing calls
no test coverage detected