Preview 2.0 is now in Public Beta!
Read the Announcement
DownloadRequest
interface DownloadRequest {
  completed: (image: any, key: string) => void;
  error: (key: string) => void;
  key: string;
  url: string;
}

Summary

Properties

completed

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

error

error?: (key: string) => void