UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

17 lines 613 B
/** * The state of a casting process, represented by a value from the following list: * <br/> - `'unavailable'`: No available cast devices. * <br/> - `'available'`: Cast device available, but the player is not connected. * <br/> - `'connecting'`: Cast device available and the player is connecting. * <br/> - `'connected'`: Cast device available and the player is connected. * * @category Casting * @public */ export declare enum CastState { unavailable = "unavailable", available = "available", connecting = "connecting", connected = "connected" } //# sourceMappingURL=CastState.d.ts.map