@hysc/meeting 10.1.1 → 10.1.3
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -777,6 +777,7 @@ declare class BMUser {
|
|
|
777
777
|
*/
|
|
778
778
|
isCalling: boolean;
|
|
779
779
|
raiseHandTime: number;
|
|
780
|
+
signals: any[];
|
|
780
781
|
/**
|
|
781
782
|
* 是不是web端入会
|
|
782
783
|
*/
|
|
@@ -786,7 +787,7 @@ declare class BMUser {
|
|
|
786
787
|
*/
|
|
787
788
|
get isMobile(): boolean;
|
|
788
789
|
constructor(user: any, isLocal?: boolean);
|
|
789
|
-
setup(userId: string, userinfo: UserInfo, nickname: string): void;
|
|
790
|
+
setup(userId: string, userinfo: UserInfo, nickname: string, customInfo?: any): void;
|
|
790
791
|
getMainStreamModel(): BMStreamModel | undefined;
|
|
791
792
|
get nickname(): string;
|
|
792
793
|
getShareStreamModel(): BMStreamModel | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -777,6 +777,7 @@ declare class BMUser {
|
|
|
777
777
|
*/
|
|
778
778
|
isCalling: boolean;
|
|
779
779
|
raiseHandTime: number;
|
|
780
|
+
signals: any[];
|
|
780
781
|
/**
|
|
781
782
|
* 是不是web端入会
|
|
782
783
|
*/
|
|
@@ -786,7 +787,7 @@ declare class BMUser {
|
|
|
786
787
|
*/
|
|
787
788
|
get isMobile(): boolean;
|
|
788
789
|
constructor(user: any, isLocal?: boolean);
|
|
789
|
-
setup(userId: string, userinfo: UserInfo, nickname: string): void;
|
|
790
|
+
setup(userId: string, userinfo: UserInfo, nickname: string, customInfo?: any): void;
|
|
790
791
|
getMainStreamModel(): BMStreamModel | undefined;
|
|
791
792
|
get nickname(): string;
|
|
792
793
|
getShareStreamModel(): BMStreamModel | undefined;
|