export interface IDatabaseService { /** * Backs up the database. */ backup(outputPath: string): Promise /** * Connects to the database. */ connect(): Promise /** * Disconnects from the database. */ disconnect(): Promise /** * Restores the database from the latest backup. */ restore(backupPath: string): Promise }