export interface IBackupService { backup(): Promise; } export interface IBackupSource, TBackup extends Record = TEntity> { /** * This method adds support for making a backup of an entity (thus preparing it for * restore counterpart). * * If nothing is returned, nothing should happen. * * @param entity */ backup(entity: TEntity): Promise; } //# sourceMappingURL=interface.d.ts.map