@vindral/web-sdk 3.2.4 → 3.2.5

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.
package/index.d.ts CHANGED
@@ -1576,8 +1576,18 @@ export declare class Player {
1576
1576
  */
1577
1577
  private triggerUserInput;
1578
1578
  private toggleOneToOne;
1579
- private enterFullscreen;
1580
- private exitFullscreen;
1579
+ /**
1580
+ * Returns true if the player is currently in fullscreen mode
1581
+ */
1582
+ isInFullscreen: () => boolean;
1583
+ /**
1584
+ * Enter fullscreen mode
1585
+ */
1586
+ enterFullscreen: () => Promise<void>;
1587
+ /**
1588
+ * Exit fullscreen mode
1589
+ */
1590
+ exitFullscreen: () => Promise<void>;
1581
1591
  private lockOrientation;
1582
1592
  private unlockOrientation;
1583
1593
  private checkState;