react-native-theoplayer
Version:
A THEOplayer video component for react-native.
20 lines (19 loc) • 723 B
JavaScript
;
/**
* 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 let CastState = /*#__PURE__*/function (CastState) {
CastState["unavailable"] = "unavailable";
CastState["available"] = "available";
CastState["connecting"] = "connecting";
CastState["connected"] = "connected";
return CastState;
}({});
//# sourceMappingURL=CastState.js.map