(path: string)
| 1163 | }; |
| 1164 | |
| 1165 | const removeMigrationJournal = (path: string): void => { |
| 1166 | fs.rmSync(path, { force: true }); |
| 1167 | fsyncDirectory(dirname(path)); |
| 1168 | }; |
| 1169 | |
| 1170 | type MigrationJournalReadResult = |
| 1171 | | { readonly kind: "missing" } |
no test coverage detected