@vindral/web-sdk 3.2.3 → 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 +12 -2
- package/index.mjs +635 -611
- package/index.umd.js +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1576,8 +1576,18 @@ export declare class Player {
|
|
|
1576
1576
|
*/
|
|
1577
1577
|
private triggerUserInput;
|
|
1578
1578
|
private toggleOneToOne;
|
|
1579
|
-
|
|
1580
|
-
|
|
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;
|