@vkontakte/calls-sdk 2.5.2-beta.8 → 2.5.2-beta.9
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 +8 -8
- package/calls-sdk.esm.js +8 -8
- package/package.json +1 -1
- package/static/WebRTCUtils.d.ts +5 -1
package/package.json
CHANGED
package/static/WebRTCUtils.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ declare namespace WebRTCUtils {
|
|
|
132
132
|
/**
|
|
133
133
|
* Версия браузера
|
|
134
134
|
*/
|
|
135
|
-
function browserVersion():
|
|
135
|
+
function browserVersion(): string;
|
|
136
136
|
/**
|
|
137
137
|
* Если браузер основан на хроме - возвращает версию
|
|
138
138
|
*/
|
|
@@ -141,5 +141,9 @@ declare namespace WebRTCUtils {
|
|
|
141
141
|
* Возвращает AudioContext
|
|
142
142
|
*/
|
|
143
143
|
function getAudioContext(): AudioContext;
|
|
144
|
+
/**
|
|
145
|
+
* Возвращает подверсию браузера (если она есть)
|
|
146
|
+
*/
|
|
147
|
+
function browserSubVersion(): string;
|
|
144
148
|
}
|
|
145
149
|
export default WebRTCUtils;
|