mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-16 08:08:18 +00:00
27 lines
739 B
TypeScript
27 lines
739 B
TypeScript
// Background Downloader
|
|
export type {
|
|
ActiveDownload,
|
|
DownloadCompleteEvent,
|
|
DownloadErrorEvent,
|
|
DownloadProgressEvent,
|
|
DownloadStartedEvent,
|
|
} from "./background-downloader";
|
|
export { default as BackgroundDownloader } from "./background-downloader";
|
|
// Type aliases for backward compatibility during migration
|
|
// These map old VLC type names to new MPV equivalents
|
|
export type {
|
|
AudioTrack,
|
|
MpvPlayerViewProps,
|
|
MpvPlayerViewRef,
|
|
OnErrorEventPayload,
|
|
OnLoadEventPayload,
|
|
OnPlaybackStateChangePayload,
|
|
OnProgressEventPayload,
|
|
OnTracksReadyEventPayload,
|
|
SubtitleTrack,
|
|
SubtitleTrack as TrackInfo,
|
|
VideoSource,
|
|
} from "./mpv-player";
|
|
// MPV Player - Main exports
|
|
export { MpvPlayerView } from "./mpv-player";
|