mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 13:46:59 +00:00
20 lines
450 B
TypeScript
20 lines
450 B
TypeScript
export { useEvent, usePlayerState } from "./events";
|
|
export { OmniProvider, usePlayer } from "./provider";
|
|
export type { OmniEvents } from "./types/events";
|
|
export type {
|
|
OmniPlayer,
|
|
OmniPlayerState,
|
|
PlayerStatus,
|
|
Rendition,
|
|
Track,
|
|
} from "./types/player";
|
|
export type {
|
|
Metadata,
|
|
MixAudioMode,
|
|
Source,
|
|
Subtitle,
|
|
VideoSrc,
|
|
} from "./types/source";
|
|
export type { SubtitleAssets } from "./types/subtitles";
|
|
export { OmniView } from "./view";
|