interface DownloadRequest {
  completed: (image: any, key: string) => void;
  error: (key: string) => void;
  key: string;
  url: string;
}
Represents a single download request.
Summary 
Properties 
completed?: (image: any, key: string) => void
error?: (key: string) => void
The key used to cache the image.