mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-06-01 03:28:27 +01:00
feat(sync-play): squash feature/sync-play
This commit is contained in:
25
providers/SyncPlay/index.ts
Normal file
25
providers/SyncPlay/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* SyncPlay Module
|
||||
*
|
||||
* Synchronized playback for Jellyfin.
|
||||
* Allows multiple users to watch content together in sync.
|
||||
*/
|
||||
|
||||
export { SyncPlayController } from "./Controller";
|
||||
// Helpers
|
||||
export * from "./Helper";
|
||||
// Core modules
|
||||
export { SyncPlayManager } from "./Manager";
|
||||
export { PlaybackCore } from "./PlaybackCore";
|
||||
export { QueueCore } from "./QueueCore";
|
||||
|
||||
// Provider and hooks
|
||||
export {
|
||||
SyncPlayProvider,
|
||||
useSyncPlay,
|
||||
useSyncPlayController,
|
||||
} from "./SyncPlayProvider";
|
||||
export { TimeSyncCore } from "./TimeSyncCore";
|
||||
|
||||
// Types
|
||||
export * from "./types";
|
||||
Reference in New Issue
Block a user