@rongcloud/plugin-rtc 5.7.3 → 5.7.4-alpha.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/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.esm.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1894,10 +1894,14 @@ interface IRoomEventListener extends IRCRTCTrackEventListener {
|
|
|
1894
1894
|
*/
|
|
1895
1895
|
onUserJoin?(userIds: string[]): void;
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* 人员正常退出
|
|
1898
1898
|
* @param userIds
|
|
1899
1899
|
*/
|
|
1900
1900
|
onUserLeave?(userIds: string[]): void;
|
|
1901
|
+
/**
|
|
1902
|
+
* 人员离线退出
|
|
1903
|
+
*/
|
|
1904
|
+
onUserOffline?(userIds: string[]): void;
|
|
1901
1905
|
/**
|
|
1902
1906
|
* 主播开启、停止推 CDN 状态通知
|
|
1903
1907
|
*/
|