DownloaderEvents
interface DownloaderEvents {
end: (summary: DownloadSummary) => void;
error: (error: DownloadError) => void;
progress: (data: SegmentDownloadedData) => void;
start: (data: { destination: string; total: number }) => void;
}Source: Downloader.ts:13
Downloader events