mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-05-31 19:18:26 +01:00
26 lines
570 B
TypeScript
26 lines
570 B
TypeScript
/**
|
|
* 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";
|