export interface IRestoreSource, TBackup extends Record = TEntity> { /** * Restore the given backed-up entity; if nothing provided, nothing happens. * * @param backup */ restore(backup?: TBackup): Promise; } //# sourceMappingURL=interface.d.ts.map