UNPKG

@configurator/ravendb

Version:
13 lines (12 loc) 422 B
import { BackupEncryptionSettings } from "./BackupEncryptionSettings"; import { RestoreType } from "./RestoreType"; export interface RestoreBackupConfigurationBase { databaseName: string; lastFileNameToRestore: string; dataDirectory: string; encryptionKey: string; disableOngoingTasks: boolean; skipIndexes: boolean; type: RestoreType; backupEncryptionSettings: BackupEncryptionSettings; }