wip: bg downloader module

This commit is contained in:
Fredrik Burmester
2025-10-02 20:12:02 +02:00
parent a39461e09a
commit ec622aba55
10 changed files with 765 additions and 2 deletions

View File

@@ -1,3 +1,11 @@
import type {
ActiveDownload,
DownloadCompleteEvent,
DownloadErrorEvent,
DownloadProgressEvent,
DownloadStartedEvent,
} from "./background-downloader";
import BackgroundDownloader from "./background-downloader";
import {
ChapterInfo,
PlaybackStatePayload,
@@ -12,8 +20,8 @@ import {
} from "./VlcPlayer.types";
import VlcPlayerView from "./VlcPlayerView";
export {
VlcPlayerView,
export { VlcPlayerView, BackgroundDownloader };
export type {
VlcPlayerViewProps,
VlcPlayerViewRef,
PlaybackStatePayload,
@@ -24,4 +32,9 @@ export {
VlcPlayerSource,
TrackInfo,
ChapterInfo,
DownloadProgressEvent,
DownloadCompleteEvent,
DownloadErrorEvent,
DownloadStartedEvent,
ActiveDownload,
};