( files: HttpImportFile[], selection: HttpImportSelection, )
| 33 | } |
| 34 | |
| 35 | export async function applyHttpImport( |
| 36 | files: HttpImportFile[], |
| 37 | selection: HttpImportSelection, |
| 38 | ): Promise<HttpImportPersistSummary> { |
| 39 | return persistHttpImportResult(await parseHttpImportFiles(files), selection) |
| 40 | } |
| 41 | |
| 42 | export async function parseHttpImportFiles( |
| 43 | files: HttpImportFile[], |
no test coverage detected