@theoplayer/extended 6.3.0 → 6.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11059,6 +11059,15 @@ interface AgamaPlayerConfiguration extends AgamaConfiguration {
11059
11059
  * <br/> - Available since v5.9.0
11060
11060
  */
11061
11061
  deviceOsVersion?: string;
11062
+ /**
11063
+ * A string describing the physical Device type
11064
+ *
11065
+ * @remarks
11066
+ * <br/> - These pre-defined Device type values must be used if the Device matches one of following: `'tablet'`, `'mobile'`, `'pc'`, `'media-streamer'` (used for Chromecast, Apple TV), `'game-console'`, `'tv'`.
11067
+ * <br/> - If no value is passed, the player will determine this based on the user agent.
11068
+ * <br/> - Available since v6.4.0
11069
+ */
11070
+ deviceType?: string;
11062
11071
  }
11063
11072
  /**
11064
11073
  * The stream type, represented by a value from the following list:
@@ -11540,6 +11549,7 @@ interface MultiViewPlayerEventMap {
11540
11549
  * @public
11541
11550
  */
11542
11551
  declare class MultiViewPlayer implements EventDispatcher<MultiViewPlayerEventMap> {
11552
+ constructor(element: HTMLElement, configuration?: UIPlayerConfiguration);
11543
11553
  /**
11544
11554
  * Returns all {@link View}s in their respective order.
11545
11555
  */