UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

48 lines (47 loc) 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CastEventType = void 0; /** * The event types dispatched by the {@link CastAPI | Cast API}. * * @category Events * @category Casting * @public */ let CastEventType = exports.CastEventType = /*#__PURE__*/function (CastEventType) { CastEventType["CHROMECAST_STATE_CHANGE"] = "chromecaststatechange"; CastEventType["AIRPLAY_STATE_CHANGE"] = "airplaystatechange"; CastEventType["CHROMECAST_ERROR"] = "chromecasterror"; return CastEventType; }({}); /** * The event dispatched by the {@link CastAPI | Cast API}. * * @category Events * @category Casting * @public */ /** * Dispatched when the chromecast state changes. * * @category Events * @category Casting * @public */ /** * Dispatched when the airplay state changes. * * @category Events * @category Casting * @public */ /** * Dispatched when a chromecast error occurs. * * @category Events * @category Casting * @public */ //# sourceMappingURL=CastEvent.js.map