@uppy/xhr-upload: export Headers type (#4549)

Fixes: https://github.com/transloadit/uppy/issues/4547
This commit is contained in:
Masum ULU 2023-07-06 12:23:14 +03:00 committed by GitHub
parent 8604178bfc
commit 8afe5338bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
import type { PluginOptions, BasePlugin, UppyFile } from '@uppy/core'
import XHRUploadLocale from './generatedLocale'
type Headers = {
[name: string]: string | number
}
export type Headers = {
[name: string]: string | number
}
export interface XHRUploadOptions extends PluginOptions {
limit?: number