🚀 8.9 Released! → ⚡️ New Node-API Engine Preview, 📲 ns widget ios, 💅 Tailwind v4 and more...
Read Announcement
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.