mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-25 12:38:20 +00:00
Removes IDE-specific configuration files and establishes Bun as the primary package manager. Updates project documentation to emphasize Bun usage throughout the development workflow and enhances VS Code settings for better TypeScript performance. Optimizes EAS build configuration with caching strategies and resource allocation improvements. Cleans up unused imports and improves TypeScript configuration for better development experience.
29 lines
555 B
TypeScript
29 lines
555 B
TypeScript
import {
|
|
ChapterInfo,
|
|
PlaybackStatePayload,
|
|
ProgressUpdatePayload,
|
|
TrackInfo,
|
|
VideoLoadStartPayload,
|
|
VideoProgressPayload,
|
|
VideoStateChangePayload,
|
|
VlcPlayerSource,
|
|
VlcPlayerViewProps,
|
|
VlcPlayerViewRef,
|
|
} from "./VlcPlayer.types";
|
|
import VlcPlayerView from "./VlcPlayerView";
|
|
|
|
export { VlcPlayerView };
|
|
|
|
export type {
|
|
VlcPlayerViewProps,
|
|
VlcPlayerViewRef,
|
|
PlaybackStatePayload,
|
|
ProgressUpdatePayload,
|
|
VideoLoadStartPayload,
|
|
VideoStateChangePayload,
|
|
VideoProgressPayload,
|
|
VlcPlayerSource,
|
|
TrackInfo,
|
|
ChapterInfo,
|
|
};
|