Preview 2.0 is now in Public Beta!
Read the Announcement
Note: You are on the beta version of our docs. This is a work in progress and may contain broken links and pages.
DownloadRequest
interface DownloadRequest {
  completed: (image: any, key: string) => void;
  error: (key: string) => void;
  key: string;
  url: string;
}
Represents a single download request.

Summary

Properties

completed

completed?: (image: any, key: string) => void

error

error?: (key: string) => void

key

key: string
The key used to cache the image.

url

url: string
The url of the image.