import { IDatabaseMoveFile } from "../web/database_move_file"; /** * The results of initializing a database move. * * @deprecated */ export interface IDatabaseMoveResponse { /** Gets or sets the list of files. */ files: IDatabaseMoveFile[]; /** Gets or sets the unique key for this move. */ key?: any; /** Gets or sets the total size of the files (GB). */ totalSize: number; } //# sourceMappingURL=database_move_response.d.ts.map