UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

135 lines (134 loc) 2.82 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PresentationModeChangePipContext = void 0; /** * Dispatched when a player error occurs. * * @category Events * @category Player * @public */ /** * Dispatched when the player determines the duration and dimensions of the media resource. * * @category Events * @category Player * @public */ /** * Dispatched when the current playback position changed as part of normal playback or in an especially interesting way, * for example discontinuously. * * @category Events * @category Player * @public */ /** * Dispatched when the player dimensions are updated. * * @category Events * @category Player * @public */ /** * Dispatched when player is resized. * * @category Events * @category Player * @public * * @deprecated use {@link DimensionChangeEvent} instead. This event is set for removal in version 11. */ /** * Dispatched when video is resized. * * @category Events * @category Player * @public */ /** * Dispatched when the player's duration changes. * * @category Events * @category Player * @public */ /** * Provides additional context information during changes in presentation mode. * * @category Events * @category Player * @public */ let PresentationModeChangePipContext = exports.PresentationModeChangePipContext = /*#__PURE__*/function (PresentationModeChangePipContext) { PresentationModeChangePipContext["CLOSED"] = "closed"; PresentationModeChangePipContext["RESTORED"] = "restored"; PresentationModeChangePipContext["TRANSITIONING_TO_PIP"] = "transitioning-to-pip"; return PresentationModeChangePipContext; }({}); /** * Provides additional context information during changes in PiP presentation mode. * * @category Events * @category Player * @public */ /** * Dispatched when the player changes its current presentation mode. * * @category Events * @category Player * @public */ /** * Dispatched when the player's playback rate changes. * * @category Events * @category Player * @public */ /** * Dispatched when the player's readystate changes. * * @category Events * @category Player * @public */ /** * Dispatched when the player's volume changes. * * @category Events * @category Player * @public */ /** * Dispatched when the player loaded media data. * * @category Events * @category Player * @public */ /** * Dispatched during playback when a segment is not found. * * @category Events * @category Player * @public */ /** * Dispatched when the player has started seeking to a new position. * * @category Events * @category Player * @public */ /** * Dispatched when the player has finished seeking to a new position. * * @category Events * @category Player * @public */ //# sourceMappingURL=PlayerEvent.js.map