8.7 released—WinterCG Compliance Part 1
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.