(db: WorkbenchDB, sqliteFilePath: string)
| 157 | }; |
| 158 | |
| 159 | const updateWorkbenchDB = async (db: WorkbenchDB, sqliteFilePath: string) => { |
| 160 | updateLoadingStatus(100); |
| 161 | setValue({ |
| 162 | db, |
| 163 | initialized: true, |
| 164 | importedSqliteFilePath: sqliteFilePath, |
| 165 | scanInfo: parseScanInfo(await db.getScanInfo()), |
| 166 | }); |
| 167 | }; |
| 168 | |
| 169 | function sqliteParser(sqliteFilePath: string, preventNavigation?: boolean) { |
| 170 | startImport(); |
no test coverage detected