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

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

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

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

Type declaration

HttpMethod

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

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

The method to use for uploading files.

PlainCallback

PlainCallback: (event: TriggeredEvent) => void

Type declaration

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

      Parameters

      Returns void

ProcessAction

Type declaration

ResponseObject

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