trtc-sdk-v5 5.7.1-beta.9 → 5.7.1
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/core.d.ts +14 -4
- package/index.d.ts +1864 -1815
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/video-effect/basic-beauty/package.json +1 -1
- package/plugins/video-effect/beauty/package.json +1 -1
- package/plugins/video-effect/virtual-background/package.json +1 -1
- package/plugins/video-effect/watermark/package.json +1 -1
- package/plugins/video-effect/watermark/watermark.esm.js +1 -1
- package/plugins/video-effect/watermark/watermark.iife.js +1 -1
- package/trtc.esm.js +32 -31
- package/trtc.js +1 -1
package/core.d.ts
CHANGED
|
@@ -200,10 +200,20 @@
|
|
|
200
200
|
|
|
201
201
|
|
|
202
202
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
203
|
+
declare const enum NetworkQualityValue {
|
|
204
|
+
UNKNOWN,
|
|
205
|
+
EXCELLENT,
|
|
206
|
+
GOOD,
|
|
207
|
+
POOR,
|
|
208
|
+
BAD,
|
|
209
|
+
VERY_BAD,
|
|
210
|
+
DISCONNECTED
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
declare const enum RemoteStreamType {
|
|
214
|
+
Main = 'main',
|
|
215
|
+
Aux = 'auxiliary',
|
|
216
|
+
}
|
|
207
217
|
|
|
208
218
|
declare interface MixTranscodeConfig {
|
|
209
219
|
/** Stream mixing mode */
|