Create a snapshot of the current DB via VACUUM INTO
(targetPath: string)
| 5 | export interface ISyncAdapter { |
| 6 | /** Create a snapshot of the current DB via VACUUM INTO */ |
| 7 | vacuumInto(targetPath: string): Promise<void>; |
| 8 | |
| 9 | /** Check integrity of a database file. Returns true if valid. */ |
| 10 | integrityCheck(dbPath: string): Promise<boolean>; |
no outgoing calls
no test coverage detected