trtc-sdk-v5 5.7.1-beta.1 → 5.7.1-beta.4
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 +4 -2
- 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/trtc.esm.js +2 -2
- package/trtc.js +1 -1
package/index.d.ts
CHANGED
|
@@ -470,7 +470,8 @@ declare const TRTCEvent: {
|
|
|
470
470
|
/**
|
|
471
471
|
* Remote user enters the room event.
|
|
472
472
|
*
|
|
473
|
-
* - In `
|
|
473
|
+
* - In `rtc` mode, all users will receive the notification of entering and exiting the room of the other user.
|
|
474
|
+
* - In `live` mode, only the anchor has the notification of entering and exiting the room, and the audience does not have the notification of entering and exiting the room. The audience can receive the notification of entering and exiting the room of the anchor.
|
|
474
475
|
* @default 'remote-user-enter'
|
|
475
476
|
* @memberof module:EVENT
|
|
476
477
|
* @example
|
|
@@ -483,7 +484,8 @@ declare const TRTCEvent: {
|
|
|
483
484
|
/**
|
|
484
485
|
* Remote user exits the room event.
|
|
485
486
|
*
|
|
486
|
-
* - In `
|
|
487
|
+
* - In `rtc` mode, all users will receive the notification of entering and exiting the room of the other user.
|
|
488
|
+
* - In `live` mode, only the anchor has the notification of entering and exiting the room, and the audience does not have the notification of entering and exiting the room. The audience can receive the notification of entering and exiting the room of the anchor.
|
|
487
489
|
* @default 'remote-user-exit'
|
|
488
490
|
* @memberof module:EVENT
|
|
489
491
|
* @example
|
package/package.json
CHANGED