mediasfu-angular 1.0.0 → 1.0.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.
@@ -444,15 +444,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
444
444
  landScaped: BehaviorSubject<boolean>;
445
445
  lock_screen: BehaviorSubject<boolean>;
446
446
  screenId: BehaviorSubject<string>;
447
- allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
448
- newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
447
+ allVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
448
+ newLimitedStreams: BehaviorSubject<(Participant | Stream)[]>;
449
449
  newLimitedStreamsIDs: BehaviorSubject<string[]>;
450
450
  activeSounds: BehaviorSubject<string[]>;
451
451
  screenShareIDStream: BehaviorSubject<string>;
452
452
  screenShareNameStream: BehaviorSubject<string>;
453
453
  adminIDStream: BehaviorSubject<string>;
454
454
  adminNameStream: BehaviorSubject<string>;
455
- youYouStream: BehaviorSubject<(Stream | Participant)[]>;
455
+ youYouStream: BehaviorSubject<(Participant | Stream)[]>;
456
456
  youYouStreamIDs: BehaviorSubject<string[]>;
457
457
  localStream: BehaviorSubject<MediaStream | null>;
458
458
  recordStarted: BehaviorSubject<boolean>;
@@ -494,15 +494,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
494
494
  screenAlreadyOn: BehaviorSubject<boolean>;
495
495
  chatAlreadyOn: BehaviorSubject<boolean>;
496
496
  redirectURL: BehaviorSubject<string>;
497
- oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
497
+ oldAllStreams: BehaviorSubject<(Participant | Stream)[]>;
498
498
  adminVidID: BehaviorSubject<string>;
499
499
  streamNames: BehaviorSubject<Stream[]>;
500
500
  non_alVideoStreams: BehaviorSubject<Participant[]>;
501
501
  sortAudioLoudness: BehaviorSubject<boolean>;
502
502
  audioDecibels: BehaviorSubject<AudioDecibels[]>;
503
- mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
503
+ mixed_alVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
504
504
  non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
505
- paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
505
+ paginatedStreams: BehaviorSubject<(Participant | Stream)[][]>;
506
506
  localStreamAudio: BehaviorSubject<MediaStream | null>;
507
507
  defAudioID: BehaviorSubject<string>;
508
508
  userDefaultAudioInputDevice: BehaviorSubject<string>;
@@ -530,8 +530,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
530
530
  prevDoPaginate: BehaviorSubject<boolean>;
531
531
  doPaginate: BehaviorSubject<boolean>;
532
532
  shareEnded: BehaviorSubject<boolean>;
533
- lStreams: BehaviorSubject<(Stream | Participant)[]>;
534
- chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
533
+ lStreams: BehaviorSubject<(Participant | Stream)[]>;
534
+ chatRefStreams: BehaviorSubject<(Participant | Stream)[]>;
535
535
  controlHeight: BehaviorSubject<number>;
536
536
  isWideScreen: BehaviorSubject<boolean>;
537
537
  isMediumScreen: BehaviorSubject<boolean>;
@@ -543,11 +543,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
543
543
  altGridRows: BehaviorSubject<number>;
544
544
  altGridCols: BehaviorSubject<number>;
545
545
  numberPages: BehaviorSubject<number>;
546
- currentStreams: BehaviorSubject<(Stream | Participant)[]>;
546
+ currentStreams: BehaviorSubject<(Participant | Stream)[]>;
547
547
  showMiniView: BehaviorSubject<boolean>;
548
548
  nStream: BehaviorSubject<MediaStream | null>;
549
549
  defer_receive: BehaviorSubject<boolean>;
550
- allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
550
+ allAudioStreams: BehaviorSubject<(Participant | Stream)[]>;
551
551
  remoteScreenStream: BehaviorSubject<Stream[]>;
552
552
  screenProducer: BehaviorSubject<Producer<import("mediasoup-client/lib/types").AppData> | null>;
553
553
  gotAllVids: BehaviorSubject<boolean>;
@@ -1025,7 +1025,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1025
1025
  updateAnnotateScreenStream: (value: boolean) => void;
1026
1026
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
1027
1027
  updateIsScreenboardModalVisible: (value: boolean) => void;
1028
- checkOrientation: () => "portrait" | "landscape";
1028
+ checkOrientation: () => "landscape" | "portrait";
1029
1029
  showAlert: ({ message, type, duration, }: {
1030
1030
  message: string;
1031
1031
  type: "success" | "danger";
@@ -1103,15 +1103,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1103
1103
  landScaped: boolean;
1104
1104
  lock_screen: boolean;
1105
1105
  screenId: string;
1106
- allVideoStreams: (Stream | Participant)[];
1107
- newLimitedStreams: (Stream | Participant)[];
1106
+ allVideoStreams: (Participant | Stream)[];
1107
+ newLimitedStreams: (Participant | Stream)[];
1108
1108
  newLimitedStreamsIDs: string[];
1109
1109
  activeSounds: string[];
1110
1110
  screenShareIDStream: string;
1111
1111
  screenShareNameStream: string;
1112
1112
  adminIDStream: string;
1113
1113
  adminNameStream: string;
1114
- youYouStream: (Stream | Participant)[];
1114
+ youYouStream: (Participant | Stream)[];
1115
1115
  youYouStreamIDs: string[];
1116
1116
  localStream: MediaStream | null;
1117
1117
  recordStarted: boolean;
@@ -1153,15 +1153,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1153
1153
  screenAlreadyOn: boolean;
1154
1154
  chatAlreadyOn: boolean;
1155
1155
  redirectURL: string;
1156
- oldAllStreams: (Stream | Participant)[];
1156
+ oldAllStreams: (Participant | Stream)[];
1157
1157
  adminVidID: string;
1158
1158
  streamNames: Stream[];
1159
1159
  non_alVideoStreams: Participant[];
1160
1160
  sortAudioLoudness: boolean;
1161
1161
  audioDecibels: AudioDecibels[];
1162
- mixed_alVideoStreams: (Stream | Participant)[];
1162
+ mixed_alVideoStreams: (Participant | Stream)[];
1163
1163
  non_alVideoStreams_muted: Participant[];
1164
- paginatedStreams: (Stream | Participant)[][];
1164
+ paginatedStreams: (Participant | Stream)[][];
1165
1165
  localStreamAudio: MediaStream | null;
1166
1166
  defAudioID: string;
1167
1167
  userDefaultAudioInputDevice: string;
@@ -1189,8 +1189,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1189
1189
  prevDoPaginate: boolean;
1190
1190
  doPaginate: boolean;
1191
1191
  shareEnded: boolean;
1192
- lStreams: (Stream | Participant)[];
1193
- chatRefStreams: (Stream | Participant)[];
1192
+ lStreams: (Participant | Stream)[];
1193
+ chatRefStreams: (Participant | Stream)[];
1194
1194
  controlHeight: number;
1195
1195
  isWideScreen: boolean;
1196
1196
  isMediumScreen: boolean;
@@ -1202,11 +1202,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1202
1202
  altGridRows: number;
1203
1203
  altGridCols: number;
1204
1204
  numberPages: number;
1205
- currentStreams: (Stream | Participant)[];
1205
+ currentStreams: (Participant | Stream)[];
1206
1206
  showMiniView: boolean;
1207
1207
  nStream: MediaStream | null;
1208
1208
  defer_receive: boolean;
1209
- allAudioStreams: (Stream | Participant)[];
1209
+ allAudioStreams: (Participant | Stream)[];
1210
1210
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1211
1211
  remoteScreenStream: Stream[];
1212
1212
  gotAllVids: boolean;
@@ -1658,7 +1658,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1658
1658
  updateAnnotateScreenStream: (value: boolean) => void;
1659
1659
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
1660
1660
  updateIsScreenboardModalVisible: (value: boolean) => void;
1661
- checkOrientation: () => "portrait" | "landscape";
1661
+ checkOrientation: () => "landscape" | "portrait";
1662
1662
  updateDevice: (value: Device | null) => void;
1663
1663
  updateSocket: (value: Socket) => void;
1664
1664
  updateValidated: (value: boolean) => void;
@@ -1811,15 +1811,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1811
1811
  landScaped: boolean;
1812
1812
  lock_screen: boolean;
1813
1813
  screenId: string;
1814
- allVideoStreams: (Stream | Participant)[];
1815
- newLimitedStreams: (Stream | Participant)[];
1814
+ allVideoStreams: (Participant | Stream)[];
1815
+ newLimitedStreams: (Participant | Stream)[];
1816
1816
  newLimitedStreamsIDs: string[];
1817
1817
  activeSounds: string[];
1818
1818
  screenShareIDStream: string;
1819
1819
  screenShareNameStream: string;
1820
1820
  adminIDStream: string;
1821
1821
  adminNameStream: string;
1822
- youYouStream: (Stream | Participant)[];
1822
+ youYouStream: (Participant | Stream)[];
1823
1823
  youYouStreamIDs: string[];
1824
1824
  localStream: MediaStream | null;
1825
1825
  recordStarted: boolean;
@@ -1861,15 +1861,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1861
1861
  screenAlreadyOn: boolean;
1862
1862
  chatAlreadyOn: boolean;
1863
1863
  redirectURL: string;
1864
- oldAllStreams: (Stream | Participant)[];
1864
+ oldAllStreams: (Participant | Stream)[];
1865
1865
  adminVidID: string;
1866
1866
  streamNames: Stream[];
1867
1867
  non_alVideoStreams: Participant[];
1868
1868
  sortAudioLoudness: boolean;
1869
1869
  audioDecibels: AudioDecibels[];
1870
- mixed_alVideoStreams: (Stream | Participant)[];
1870
+ mixed_alVideoStreams: (Participant | Stream)[];
1871
1871
  non_alVideoStreams_muted: Participant[];
1872
- paginatedStreams: (Stream | Participant)[][];
1872
+ paginatedStreams: (Participant | Stream)[][];
1873
1873
  localStreamAudio: MediaStream | null;
1874
1874
  defAudioID: string;
1875
1875
  userDefaultAudioInputDevice: string;
@@ -1897,8 +1897,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1897
1897
  prevDoPaginate: boolean;
1898
1898
  doPaginate: boolean;
1899
1899
  shareEnded: boolean;
1900
- lStreams: (Stream | Participant)[];
1901
- chatRefStreams: (Stream | Participant)[];
1900
+ lStreams: (Participant | Stream)[];
1901
+ chatRefStreams: (Participant | Stream)[];
1902
1902
  controlHeight: number;
1903
1903
  isWideScreen: boolean;
1904
1904
  isMediumScreen: boolean;
@@ -1910,11 +1910,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
1910
1910
  altGridRows: number;
1911
1911
  altGridCols: number;
1912
1912
  numberPages: number;
1913
- currentStreams: (Stream | Participant)[];
1913
+ currentStreams: (Participant | Stream)[];
1914
1914
  showMiniView: boolean;
1915
1915
  nStream: MediaStream | null;
1916
1916
  defer_receive: boolean;
1917
- allAudioStreams: (Stream | Participant)[];
1917
+ allAudioStreams: (Participant | Stream)[];
1918
1918
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1919
1919
  remoteScreenStream: Stream[];
1920
1920
  gotAllVids: boolean;
@@ -2366,7 +2366,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
2366
2366
  updateAnnotateScreenStream: (value: boolean) => void;
2367
2367
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
2368
2368
  updateIsScreenboardModalVisible: (value: boolean) => void;
2369
- checkOrientation: () => "portrait" | "landscape";
2369
+ checkOrientation: () => "landscape" | "portrait";
2370
2370
  updateDevice: (value: Device | null) => void;
2371
2371
  updateSocket: (value: Socket) => void;
2372
2372
  updateValidated: (value: boolean) => void;
@@ -2522,15 +2522,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
2522
2522
  landScaped: boolean;
2523
2523
  lock_screen: boolean;
2524
2524
  screenId: string;
2525
- allVideoStreams: (Stream | Participant)[];
2526
- newLimitedStreams: (Stream | Participant)[];
2525
+ allVideoStreams: (Participant | Stream)[];
2526
+ newLimitedStreams: (Participant | Stream)[];
2527
2527
  newLimitedStreamsIDs: string[];
2528
2528
  activeSounds: string[];
2529
2529
  screenShareIDStream: string;
2530
2530
  screenShareNameStream: string;
2531
2531
  adminIDStream: string;
2532
2532
  adminNameStream: string;
2533
- youYouStream: (Stream | Participant)[];
2533
+ youYouStream: (Participant | Stream)[];
2534
2534
  youYouStreamIDs: string[];
2535
2535
  localStream: MediaStream | null;
2536
2536
  recordStarted: boolean;
@@ -2572,15 +2572,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
2572
2572
  screenAlreadyOn: boolean;
2573
2573
  chatAlreadyOn: boolean;
2574
2574
  redirectURL: string;
2575
- oldAllStreams: (Stream | Participant)[];
2575
+ oldAllStreams: (Participant | Stream)[];
2576
2576
  adminVidID: string;
2577
2577
  streamNames: Stream[];
2578
2578
  non_alVideoStreams: Participant[];
2579
2579
  sortAudioLoudness: boolean;
2580
2580
  audioDecibels: AudioDecibels[];
2581
- mixed_alVideoStreams: (Stream | Participant)[];
2581
+ mixed_alVideoStreams: (Participant | Stream)[];
2582
2582
  non_alVideoStreams_muted: Participant[];
2583
- paginatedStreams: (Stream | Participant)[][];
2583
+ paginatedStreams: (Participant | Stream)[][];
2584
2584
  localStreamAudio: MediaStream | null;
2585
2585
  defAudioID: string;
2586
2586
  userDefaultAudioInputDevice: string;
@@ -2608,8 +2608,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
2608
2608
  prevDoPaginate: boolean;
2609
2609
  doPaginate: boolean;
2610
2610
  shareEnded: boolean;
2611
- lStreams: (Stream | Participant)[];
2612
- chatRefStreams: (Stream | Participant)[];
2611
+ lStreams: (Participant | Stream)[];
2612
+ chatRefStreams: (Participant | Stream)[];
2613
2613
  controlHeight: number;
2614
2614
  isWideScreen: boolean;
2615
2615
  isMediumScreen: boolean;
@@ -2621,11 +2621,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
2621
2621
  altGridRows: number;
2622
2622
  altGridCols: number;
2623
2623
  numberPages: number;
2624
- currentStreams: (Stream | Participant)[];
2624
+ currentStreams: (Participant | Stream)[];
2625
2625
  showMiniView: boolean;
2626
2626
  nStream: MediaStream | null;
2627
2627
  defer_receive: boolean;
2628
- allAudioStreams: (Stream | Participant)[];
2628
+ allAudioStreams: (Participant | Stream)[];
2629
2629
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
2630
2630
  remoteScreenStream: Stream[];
2631
2631
  gotAllVids: boolean;
@@ -3077,7 +3077,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3077
3077
  updateAnnotateScreenStream: (value: boolean) => void;
3078
3078
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3079
3079
  updateIsScreenboardModalVisible: (value: boolean) => void;
3080
- checkOrientation: () => "portrait" | "landscape";
3080
+ checkOrientation: () => "landscape" | "portrait";
3081
3081
  updateDevice: (value: Device | null) => void;
3082
3082
  updateSocket: (value: Socket) => void;
3083
3083
  updateValidated: (value: boolean) => void;
@@ -3230,15 +3230,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3230
3230
  landScaped: boolean;
3231
3231
  lock_screen: boolean;
3232
3232
  screenId: string;
3233
- allVideoStreams: (Stream | Participant)[];
3234
- newLimitedStreams: (Stream | Participant)[];
3233
+ allVideoStreams: (Participant | Stream)[];
3234
+ newLimitedStreams: (Participant | Stream)[];
3235
3235
  newLimitedStreamsIDs: string[];
3236
3236
  activeSounds: string[];
3237
3237
  screenShareIDStream: string;
3238
3238
  screenShareNameStream: string;
3239
3239
  adminIDStream: string;
3240
3240
  adminNameStream: string;
3241
- youYouStream: (Stream | Participant)[];
3241
+ youYouStream: (Participant | Stream)[];
3242
3242
  youYouStreamIDs: string[];
3243
3243
  localStream: MediaStream | null;
3244
3244
  recordStarted: boolean;
@@ -3280,15 +3280,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3280
3280
  screenAlreadyOn: boolean;
3281
3281
  chatAlreadyOn: boolean;
3282
3282
  redirectURL: string;
3283
- oldAllStreams: (Stream | Participant)[];
3283
+ oldAllStreams: (Participant | Stream)[];
3284
3284
  adminVidID: string;
3285
3285
  streamNames: Stream[];
3286
3286
  non_alVideoStreams: Participant[];
3287
3287
  sortAudioLoudness: boolean;
3288
3288
  audioDecibels: AudioDecibels[];
3289
- mixed_alVideoStreams: (Stream | Participant)[];
3289
+ mixed_alVideoStreams: (Participant | Stream)[];
3290
3290
  non_alVideoStreams_muted: Participant[];
3291
- paginatedStreams: (Stream | Participant)[][];
3291
+ paginatedStreams: (Participant | Stream)[][];
3292
3292
  localStreamAudio: MediaStream | null;
3293
3293
  defAudioID: string;
3294
3294
  userDefaultAudioInputDevice: string;
@@ -3316,8 +3316,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3316
3316
  prevDoPaginate: boolean;
3317
3317
  doPaginate: boolean;
3318
3318
  shareEnded: boolean;
3319
- lStreams: (Stream | Participant)[];
3320
- chatRefStreams: (Stream | Participant)[];
3319
+ lStreams: (Participant | Stream)[];
3320
+ chatRefStreams: (Participant | Stream)[];
3321
3321
  controlHeight: number;
3322
3322
  isWideScreen: boolean;
3323
3323
  isMediumScreen: boolean;
@@ -3329,11 +3329,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3329
3329
  altGridRows: number;
3330
3330
  altGridCols: number;
3331
3331
  numberPages: number;
3332
- currentStreams: (Stream | Participant)[];
3332
+ currentStreams: (Participant | Stream)[];
3333
3333
  showMiniView: boolean;
3334
3334
  nStream: MediaStream | null;
3335
3335
  defer_receive: boolean;
3336
- allAudioStreams: (Stream | Participant)[];
3336
+ allAudioStreams: (Participant | Stream)[];
3337
3337
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
3338
3338
  remoteScreenStream: Stream[];
3339
3339
  gotAllVids: boolean;
@@ -3785,7 +3785,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3785
3785
  updateAnnotateScreenStream: (value: boolean) => void;
3786
3786
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3787
3787
  updateIsScreenboardModalVisible: (value: boolean) => void;
3788
- checkOrientation: () => "portrait" | "landscape";
3788
+ checkOrientation: () => "landscape" | "portrait";
3789
3789
  updateDevice: (value: Device | null) => void;
3790
3790
  updateSocket: (value: Socket) => void;
3791
3791
  updateValidated: (value: boolean) => void;
@@ -3941,15 +3941,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3941
3941
  landScaped: boolean;
3942
3942
  lock_screen: boolean;
3943
3943
  screenId: string;
3944
- allVideoStreams: (Stream | Participant)[];
3945
- newLimitedStreams: (Stream | Participant)[];
3944
+ allVideoStreams: (Participant | Stream)[];
3945
+ newLimitedStreams: (Participant | Stream)[];
3946
3946
  newLimitedStreamsIDs: string[];
3947
3947
  activeSounds: string[];
3948
3948
  screenShareIDStream: string;
3949
3949
  screenShareNameStream: string;
3950
3950
  adminIDStream: string;
3951
3951
  adminNameStream: string;
3952
- youYouStream: (Stream | Participant)[];
3952
+ youYouStream: (Participant | Stream)[];
3953
3953
  youYouStreamIDs: string[];
3954
3954
  localStream: MediaStream | null;
3955
3955
  recordStarted: boolean;
@@ -3991,15 +3991,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
3991
3991
  screenAlreadyOn: boolean;
3992
3992
  chatAlreadyOn: boolean;
3993
3993
  redirectURL: string;
3994
- oldAllStreams: (Stream | Participant)[];
3994
+ oldAllStreams: (Participant | Stream)[];
3995
3995
  adminVidID: string;
3996
3996
  streamNames: Stream[];
3997
3997
  non_alVideoStreams: Participant[];
3998
3998
  sortAudioLoudness: boolean;
3999
3999
  audioDecibels: AudioDecibels[];
4000
- mixed_alVideoStreams: (Stream | Participant)[];
4000
+ mixed_alVideoStreams: (Participant | Stream)[];
4001
4001
  non_alVideoStreams_muted: Participant[];
4002
- paginatedStreams: (Stream | Participant)[][];
4002
+ paginatedStreams: (Participant | Stream)[][];
4003
4003
  localStreamAudio: MediaStream | null;
4004
4004
  defAudioID: string;
4005
4005
  userDefaultAudioInputDevice: string;
@@ -4027,8 +4027,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4027
4027
  prevDoPaginate: boolean;
4028
4028
  doPaginate: boolean;
4029
4029
  shareEnded: boolean;
4030
- lStreams: (Stream | Participant)[];
4031
- chatRefStreams: (Stream | Participant)[];
4030
+ lStreams: (Participant | Stream)[];
4031
+ chatRefStreams: (Participant | Stream)[];
4032
4032
  controlHeight: number;
4033
4033
  isWideScreen: boolean;
4034
4034
  isMediumScreen: boolean;
@@ -4040,11 +4040,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4040
4040
  altGridRows: number;
4041
4041
  altGridCols: number;
4042
4042
  numberPages: number;
4043
- currentStreams: (Stream | Participant)[];
4043
+ currentStreams: (Participant | Stream)[];
4044
4044
  showMiniView: boolean;
4045
4045
  nStream: MediaStream | null;
4046
4046
  defer_receive: boolean;
4047
- allAudioStreams: (Stream | Participant)[];
4047
+ allAudioStreams: (Participant | Stream)[];
4048
4048
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
4049
4049
  remoteScreenStream: Stream[];
4050
4050
  gotAllVids: boolean;
@@ -4496,7 +4496,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4496
4496
  updateAnnotateScreenStream: (value: boolean) => void;
4497
4497
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
4498
4498
  updateIsScreenboardModalVisible: (value: boolean) => void;
4499
- checkOrientation: () => "portrait" | "landscape";
4499
+ checkOrientation: () => "landscape" | "portrait";
4500
4500
  updateDevice: (value: Device | null) => void;
4501
4501
  updateSocket: (value: Socket) => void;
4502
4502
  updateValidated: (value: boolean) => void;
@@ -4649,15 +4649,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4649
4649
  landScaped: boolean;
4650
4650
  lock_screen: boolean;
4651
4651
  screenId: string;
4652
- allVideoStreams: (Stream | Participant)[];
4653
- newLimitedStreams: (Stream | Participant)[];
4652
+ allVideoStreams: (Participant | Stream)[];
4653
+ newLimitedStreams: (Participant | Stream)[];
4654
4654
  newLimitedStreamsIDs: string[];
4655
4655
  activeSounds: string[];
4656
4656
  screenShareIDStream: string;
4657
4657
  screenShareNameStream: string;
4658
4658
  adminIDStream: string;
4659
4659
  adminNameStream: string;
4660
- youYouStream: (Stream | Participant)[];
4660
+ youYouStream: (Participant | Stream)[];
4661
4661
  youYouStreamIDs: string[];
4662
4662
  localStream: MediaStream | null;
4663
4663
  recordStarted: boolean;
@@ -4699,15 +4699,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4699
4699
  screenAlreadyOn: boolean;
4700
4700
  chatAlreadyOn: boolean;
4701
4701
  redirectURL: string;
4702
- oldAllStreams: (Stream | Participant)[];
4702
+ oldAllStreams: (Participant | Stream)[];
4703
4703
  adminVidID: string;
4704
4704
  streamNames: Stream[];
4705
4705
  non_alVideoStreams: Participant[];
4706
4706
  sortAudioLoudness: boolean;
4707
4707
  audioDecibels: AudioDecibels[];
4708
- mixed_alVideoStreams: (Stream | Participant)[];
4708
+ mixed_alVideoStreams: (Participant | Stream)[];
4709
4709
  non_alVideoStreams_muted: Participant[];
4710
- paginatedStreams: (Stream | Participant)[][];
4710
+ paginatedStreams: (Participant | Stream)[][];
4711
4711
  localStreamAudio: MediaStream | null;
4712
4712
  defAudioID: string;
4713
4713
  userDefaultAudioInputDevice: string;
@@ -4735,8 +4735,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4735
4735
  prevDoPaginate: boolean;
4736
4736
  doPaginate: boolean;
4737
4737
  shareEnded: boolean;
4738
- lStreams: (Stream | Participant)[];
4739
- chatRefStreams: (Stream | Participant)[];
4738
+ lStreams: (Participant | Stream)[];
4739
+ chatRefStreams: (Participant | Stream)[];
4740
4740
  controlHeight: number;
4741
4741
  isWideScreen: boolean;
4742
4742
  isMediumScreen: boolean;
@@ -4748,11 +4748,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
4748
4748
  altGridRows: number;
4749
4749
  altGridCols: number;
4750
4750
  numberPages: number;
4751
- currentStreams: (Stream | Participant)[];
4751
+ currentStreams: (Participant | Stream)[];
4752
4752
  showMiniView: boolean;
4753
4753
  nStream: MediaStream | null;
4754
4754
  defer_receive: boolean;
4755
- allAudioStreams: (Stream | Participant)[];
4755
+ allAudioStreams: (Participant | Stream)[];
4756
4756
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
4757
4757
  remoteScreenStream: Stream[];
4758
4758
  gotAllVids: boolean;
@@ -5204,7 +5204,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
5204
5204
  updateAnnotateScreenStream: (value: boolean) => void;
5205
5205
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
5206
5206
  updateIsScreenboardModalVisible: (value: boolean) => void;
5207
- checkOrientation: () => "portrait" | "landscape";
5207
+ checkOrientation: () => "landscape" | "portrait";
5208
5208
  updateDevice: (value: Device | null) => void;
5209
5209
  updateSocket: (value: Socket) => void;
5210
5210
  updateValidated: (value: boolean) => void;
@@ -5450,15 +5450,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
5450
5450
  landScaped: boolean;
5451
5451
  lock_screen: boolean;
5452
5452
  screenId: string;
5453
- allVideoStreams: (Stream | Participant)[];
5454
- newLimitedStreams: (Stream | Participant)[];
5453
+ allVideoStreams: (Participant | Stream)[];
5454
+ newLimitedStreams: (Participant | Stream)[];
5455
5455
  newLimitedStreamsIDs: string[];
5456
5456
  activeSounds: string[];
5457
5457
  screenShareIDStream: string;
5458
5458
  screenShareNameStream: string;
5459
5459
  adminIDStream: string;
5460
5460
  adminNameStream: string;
5461
- youYouStream: (Stream | Participant)[];
5461
+ youYouStream: (Participant | Stream)[];
5462
5462
  youYouStreamIDs: string[];
5463
5463
  localStream: MediaStream | null;
5464
5464
  recordStarted: boolean;
@@ -5500,15 +5500,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
5500
5500
  screenAlreadyOn: boolean;
5501
5501
  chatAlreadyOn: boolean;
5502
5502
  redirectURL: string;
5503
- oldAllStreams: (Stream | Participant)[];
5503
+ oldAllStreams: (Participant | Stream)[];
5504
5504
  adminVidID: string;
5505
5505
  streamNames: Stream[];
5506
5506
  non_alVideoStreams: Participant[];
5507
5507
  sortAudioLoudness: boolean;
5508
5508
  audioDecibels: AudioDecibels[];
5509
- mixed_alVideoStreams: (Stream | Participant)[];
5509
+ mixed_alVideoStreams: (Participant | Stream)[];
5510
5510
  non_alVideoStreams_muted: Participant[];
5511
- paginatedStreams: (Stream | Participant)[][];
5511
+ paginatedStreams: (Participant | Stream)[][];
5512
5512
  localStreamAudio: MediaStream | null;
5513
5513
  defAudioID: string;
5514
5514
  userDefaultAudioInputDevice: string;
@@ -5536,8 +5536,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
5536
5536
  prevDoPaginate: boolean;
5537
5537
  doPaginate: boolean;
5538
5538
  shareEnded: boolean;
5539
- lStreams: (Stream | Participant)[];
5540
- chatRefStreams: (Stream | Participant)[];
5539
+ lStreams: (Participant | Stream)[];
5540
+ chatRefStreams: (Participant | Stream)[];
5541
5541
  controlHeight: number;
5542
5542
  isWideScreen: boolean;
5543
5543
  isMediumScreen: boolean;
@@ -5549,11 +5549,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
5549
5549
  altGridRows: number;
5550
5550
  altGridCols: number;
5551
5551
  numberPages: number;
5552
- currentStreams: (Stream | Participant)[];
5552
+ currentStreams: (Participant | Stream)[];
5553
5553
  showMiniView: boolean;
5554
5554
  nStream: MediaStream | null;
5555
5555
  defer_receive: boolean;
5556
- allAudioStreams: (Stream | Participant)[];
5556
+ allAudioStreams: (Participant | Stream)[];
5557
5557
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
5558
5558
  remoteScreenStream: Stream[];
5559
5559
  gotAllVids: boolean;
@@ -6005,7 +6005,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6005
6005
  updateAnnotateScreenStream: (value: boolean) => void;
6006
6006
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
6007
6007
  updateIsScreenboardModalVisible: (value: boolean) => void;
6008
- checkOrientation: () => "portrait" | "landscape";
6008
+ checkOrientation: () => "landscape" | "portrait";
6009
6009
  updateDevice: (value: Device | null) => void;
6010
6010
  updateSocket: (value: Socket) => void;
6011
6011
  updateValidated: (value: boolean) => void;
@@ -6158,15 +6158,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6158
6158
  landScaped: boolean;
6159
6159
  lock_screen: boolean;
6160
6160
  screenId: string;
6161
- allVideoStreams: (Stream | Participant)[];
6162
- newLimitedStreams: (Stream | Participant)[];
6161
+ allVideoStreams: (Participant | Stream)[];
6162
+ newLimitedStreams: (Participant | Stream)[];
6163
6163
  newLimitedStreamsIDs: string[];
6164
6164
  activeSounds: string[];
6165
6165
  screenShareIDStream: string;
6166
6166
  screenShareNameStream: string;
6167
6167
  adminIDStream: string;
6168
6168
  adminNameStream: string;
6169
- youYouStream: (Stream | Participant)[];
6169
+ youYouStream: (Participant | Stream)[];
6170
6170
  youYouStreamIDs: string[];
6171
6171
  localStream: MediaStream | null;
6172
6172
  recordStarted: boolean;
@@ -6208,15 +6208,15 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6208
6208
  screenAlreadyOn: boolean;
6209
6209
  chatAlreadyOn: boolean;
6210
6210
  redirectURL: string;
6211
- oldAllStreams: (Stream | Participant)[];
6211
+ oldAllStreams: (Participant | Stream)[];
6212
6212
  adminVidID: string;
6213
6213
  streamNames: Stream[];
6214
6214
  non_alVideoStreams: Participant[];
6215
6215
  sortAudioLoudness: boolean;
6216
6216
  audioDecibels: AudioDecibels[];
6217
- mixed_alVideoStreams: (Stream | Participant)[];
6217
+ mixed_alVideoStreams: (Participant | Stream)[];
6218
6218
  non_alVideoStreams_muted: Participant[];
6219
- paginatedStreams: (Stream | Participant)[][];
6219
+ paginatedStreams: (Participant | Stream)[][];
6220
6220
  localStreamAudio: MediaStream | null;
6221
6221
  defAudioID: string;
6222
6222
  userDefaultAudioInputDevice: string;
@@ -6244,8 +6244,8 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6244
6244
  prevDoPaginate: boolean;
6245
6245
  doPaginate: boolean;
6246
6246
  shareEnded: boolean;
6247
- lStreams: (Stream | Participant)[];
6248
- chatRefStreams: (Stream | Participant)[];
6247
+ lStreams: (Participant | Stream)[];
6248
+ chatRefStreams: (Participant | Stream)[];
6249
6249
  controlHeight: number;
6250
6250
  isWideScreen: boolean;
6251
6251
  isMediumScreen: boolean;
@@ -6257,11 +6257,11 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6257
6257
  altGridRows: number;
6258
6258
  altGridCols: number;
6259
6259
  numberPages: number;
6260
- currentStreams: (Stream | Participant)[];
6260
+ currentStreams: (Participant | Stream)[];
6261
6261
  showMiniView: boolean;
6262
6262
  nStream: MediaStream | null;
6263
6263
  defer_receive: boolean;
6264
- allAudioStreams: (Stream | Participant)[];
6264
+ allAudioStreams: (Participant | Stream)[];
6265
6265
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
6266
6266
  remoteScreenStream: Stream[];
6267
6267
  gotAllVids: boolean;
@@ -6713,7 +6713,7 @@ export declare class MediasfuConference implements OnInit, OnDestroy {
6713
6713
  updateAnnotateScreenStream: (value: boolean) => void;
6714
6714
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
6715
6715
  updateIsScreenboardModalVisible: (value: boolean) => void;
6716
- checkOrientation: () => "portrait" | "landscape";
6716
+ checkOrientation: () => "landscape" | "portrait";
6717
6717
  updateDevice: (value: Device | null) => void;
6718
6718
  updateSocket: (value: Socket) => void;
6719
6719
  updateValidated: (value: boolean) => void;