Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace for the jQuery BlueImp File Upload plugin.

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery.

Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.

See https://github.com/blueimp/jQuery-File-Upload

Index

Type Aliases

DataCallback<TData>: ((event: TriggeredEvent, data: TData) => void)

Type Parameters

  • TData

Type declaration

    • A callback for an event that also receives some additional data, in addition to the event.

      Parameters

      Returns void

DataCallbackBool<TData>: ((event: TriggeredEvent, data: TData) => boolean)

Type Parameters

  • TData

Type declaration

    • A callback for an event that receives some additional data and may also return a boolean that usually defines whether the action that triggered this event is pursued further.

      Parameters

      Returns boolean

FileUploadConstructor: (new (options?: Partial<FileUploadOptions>, element?: HTMLFormElement) => JQueryFileUpload.FileUpload)

Type declaration

HttpMethod: "GET" | "HEAD" | "POST" | "PUT" | "DELETE" | "CONNECT" | "OPTIONS" | "TRACE" | "PATCH"

Enumeration of common HTTP methods that can be used with the jQuery file upload plugin.

HttpUploadMethod: "POST" | "PUT" | "PATCH"

The method to use for uploading files.

PlainCallback: ((event: TriggeredEvent) => void)

Type declaration

    • Plain callback for event listeners. They only received the event that occurred.

      Parameters

      Returns void

Type declaration

ResponseObject<TResponse, TFailure>: ResponseSuccess<TResponse> | ResponseFailure<TFailure>

Represents the response of a successful or failed request.

Type Parameters

  • TResponse = unknown

    Type of the response.

  • TFailure = unknown

    Type of the error.

Generated using TypeDoc