( sessionId: string, filePath: string, onProgress?: (progress: ParseProgress) => void, options?: ImportOptions )
| 940 | * 执行增量导入 |
| 941 | */ |
| 942 | export async function incrementalImport( |
| 943 | sessionId: string, |
| 944 | filePath: string, |
| 945 | onProgress?: (progress: ParseProgress) => void, |
| 946 | options?: ImportOptions |
| 947 | ): Promise<IncrementalImportResult> { |
| 948 | assertDataDirCompatibleNow() |
| 949 | |
| 950 | return sendToWorkerWithProgress('incrementalImport', { sessionId, filePath, options }, onProgress) |
| 951 | } |
| 952 | |
| 953 | /** |
| 954 | * Dry-run analysis result for new sessions |
nothing calls this directly
no test coverage detected