UNPKG

@configurator/ravendb

Version:
11 lines (10 loc) 296 B
import { UploadType } from "./BackupStatus"; import { UploadState } from "./UploadState"; export interface UploadProgress { uploadType: UploadType; uploadState: UploadState; uploadedInBytes: number; totalInBytes: number; bytesPutsPerSec: number; uploadTimeInMs: number; }