@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.5.2-beta.8",
3
+ "version": "2.5.2-beta.9",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -132,7 +132,7 @@ declare namespace WebRTCUtils {
132
132
  /**
133
133
  * Версия браузера
134
134
  */
135
- function browserVersion(): number;
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;