Properties
actionLoad
actionLoad?: string
Action to run to trigger the load operation, defaults to 'load'.
actionAbort
actionAbort?: string
Action to run to abort the load operation, defaults to 'abort'.
getBaseName
getBaseName?: (entry: FilePondEntry, blob: Blob) => string
Hook that runs when determining the name for a file. Defaults to () => 'Untitled'.
mimeTypeMap
mimeTypeMap?: { [key: string]: string; }
An object with key value pairs describing mime type relation to extension.
fetchHead
fetchHead?: boolean
Fetch remote HEAD to get file content length and type so meta data is updated sooner, defaults to true.
parallel
parallel?: number
Maximum number of URLs to load in parallel, defaults to 2.
useWebWorkers
useWebWorkers?: boolean
Determines if we should use WebWorkers for the XMLHttpRequest, defaults to true.
willRequestWithOptions
willRequestWithOptions?: RequestHook
Intercept options sent to XMLHttpRequest with RequestHook.