8.8 released—CSS Media Query support, SF Symbols and much more...
Learn more
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.