react-native-theoplayer
Version:
A THEOplayer video component for react-native.
24 lines (23 loc) • 829 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CastState = void 0;
/**
* 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
*/
let CastState = exports.CastState = /*#__PURE__*/function (CastState) {
CastState["unavailable"] = "unavailable";
CastState["available"] = "available";
CastState["connecting"] = "connecting";
CastState["connected"] = "connected";
return CastState;
}({});
//# sourceMappingURL=CastState.js.map