withCredentials and responseType are available options when using XHRUpload, but they are not included in the type signature of XHRUploadOptions
@@ -14,6 +14,8 @@ declare module XHRUpload {
endpoint: string
method?: 'GET' | 'POST' | 'PUT' | 'HEAD' | 'get' | 'post' | 'put' | 'head'
locale?: XHRUploadLocale
+ responseType?: string
+ withCredentials?: boolean
}