Interface IUploadOptions

interface IUploadOptions {
    contentType?: string;
    progress?: ((bytesUploaded, totalBytes?) => void);
}

Properties

contentType?: string
progress?: ((bytesUploaded, totalBytes?) => void)

Type declaration

    • (bytesUploaded, totalBytes?): void
    • Parameters

      • bytesUploaded: number
      • Optional totalBytes: number

      Returns void

Generated using TypeDoc