@vkontakte/calls-sdk 2.6.3-beta.1 → 2.6.3-beta.2
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/calls-sdk.cjs.js +7 -7
- package/calls-sdk.esm.js +7 -7
- package/package.json +1 -1
- package/static/Params.d.ts +7 -0
package/package.json
CHANGED
package/static/Params.d.ts
CHANGED
|
@@ -119,6 +119,12 @@ export declare type ParamsObject = {
|
|
|
119
119
|
* _По умолчанию: `15`_
|
|
120
120
|
*/
|
|
121
121
|
screenFrameRate: number;
|
|
122
|
+
/**
|
|
123
|
+
* Вариант захвата экрана. Поддерживается в Chrome 107+
|
|
124
|
+
* @see https://developer.chrome.com/docs/web-platform/screen-sharing-controls/
|
|
125
|
+
* @hidden
|
|
126
|
+
*/
|
|
127
|
+
displaySurface: DisplayCaptureSurfaceType;
|
|
122
128
|
/**
|
|
123
129
|
* Экземпляр класса `VideoEffects` из `@vkontakte/calls-video-effects`
|
|
124
130
|
*
|
|
@@ -650,6 +656,7 @@ export default abstract class Params {
|
|
|
650
656
|
static get videoFrameRate(): number;
|
|
651
657
|
static get videoFacingMode(): FacingMode;
|
|
652
658
|
static get screenFrameRate(): number;
|
|
659
|
+
static get displaySurface(): DisplayCaptureSurfaceType;
|
|
653
660
|
static get videoEffects(): VideoEffects | null;
|
|
654
661
|
static set videoEffects(value: VideoEffects | null);
|
|
655
662
|
static get videoEffectMaxWidth(): number;
|