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.
@@ -384,15 +384,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
384
384
  landScaped: BehaviorSubject<boolean>;
385
385
  lock_screen: BehaviorSubject<boolean>;
386
386
  screenId: BehaviorSubject<string>;
387
- allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
388
- newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
387
+ allVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
388
+ newLimitedStreams: BehaviorSubject<(Participant | Stream)[]>;
389
389
  newLimitedStreamsIDs: BehaviorSubject<string[]>;
390
390
  activeSounds: BehaviorSubject<string[]>;
391
391
  screenShareIDStream: BehaviorSubject<string>;
392
392
  screenShareNameStream: BehaviorSubject<string>;
393
393
  adminIDStream: BehaviorSubject<string>;
394
394
  adminNameStream: BehaviorSubject<string>;
395
- youYouStream: BehaviorSubject<(Stream | Participant)[]>;
395
+ youYouStream: BehaviorSubject<(Participant | Stream)[]>;
396
396
  youYouStreamIDs: BehaviorSubject<string[]>;
397
397
  localStream: BehaviorSubject<MediaStream | null>;
398
398
  recordStarted: BehaviorSubject<boolean>;
@@ -434,15 +434,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
434
434
  screenAlreadyOn: BehaviorSubject<boolean>;
435
435
  chatAlreadyOn: BehaviorSubject<boolean>;
436
436
  redirectURL: BehaviorSubject<string>;
437
- oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
437
+ oldAllStreams: BehaviorSubject<(Participant | Stream)[]>;
438
438
  adminVidID: BehaviorSubject<string>;
439
439
  streamNames: BehaviorSubject<Stream[]>;
440
440
  non_alVideoStreams: BehaviorSubject<Participant[]>;
441
441
  sortAudioLoudness: BehaviorSubject<boolean>;
442
442
  audioDecibels: BehaviorSubject<AudioDecibels[]>;
443
- mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
443
+ mixed_alVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
444
444
  non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
445
- paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
445
+ paginatedStreams: BehaviorSubject<(Participant | Stream)[][]>;
446
446
  localStreamAudio: BehaviorSubject<MediaStream | null>;
447
447
  defAudioID: BehaviorSubject<string>;
448
448
  userDefaultAudioInputDevice: BehaviorSubject<string>;
@@ -470,8 +470,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
470
470
  prevDoPaginate: BehaviorSubject<boolean>;
471
471
  doPaginate: BehaviorSubject<boolean>;
472
472
  shareEnded: BehaviorSubject<boolean>;
473
- lStreams: BehaviorSubject<(Stream | Participant)[]>;
474
- chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
473
+ lStreams: BehaviorSubject<(Participant | Stream)[]>;
474
+ chatRefStreams: BehaviorSubject<(Participant | Stream)[]>;
475
475
  controlHeight: BehaviorSubject<number>;
476
476
  isWideScreen: BehaviorSubject<boolean>;
477
477
  isMediumScreen: BehaviorSubject<boolean>;
@@ -483,11 +483,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
483
483
  altGridRows: BehaviorSubject<number>;
484
484
  altGridCols: BehaviorSubject<number>;
485
485
  numberPages: BehaviorSubject<number>;
486
- currentStreams: BehaviorSubject<(Stream | Participant)[]>;
486
+ currentStreams: BehaviorSubject<(Participant | Stream)[]>;
487
487
  showMiniView: BehaviorSubject<boolean>;
488
488
  nStream: BehaviorSubject<MediaStream | null>;
489
489
  defer_receive: BehaviorSubject<boolean>;
490
- allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
490
+ allAudioStreams: BehaviorSubject<(Participant | Stream)[]>;
491
491
  remoteScreenStream: BehaviorSubject<Stream[]>;
492
492
  screenProducer: BehaviorSubject<Producer<import("mediasoup-client/lib/types").AppData> | null>;
493
493
  gotAllVids: BehaviorSubject<boolean>;
@@ -963,7 +963,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
963
963
  updateAnnotateScreenStream: (value: boolean) => void;
964
964
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
965
965
  updateIsScreenboardModalVisible: (value: boolean) => void;
966
- checkOrientation: () => "portrait" | "landscape";
966
+ checkOrientation: () => "landscape" | "portrait";
967
967
  showAlert: ({ message, type, duration, }: {
968
968
  message: string;
969
969
  type: "success" | "danger";
@@ -1041,15 +1041,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1041
1041
  landScaped: boolean;
1042
1042
  lock_screen: boolean;
1043
1043
  screenId: string;
1044
- allVideoStreams: (Stream | Participant)[];
1045
- newLimitedStreams: (Stream | Participant)[];
1044
+ allVideoStreams: (Participant | Stream)[];
1045
+ newLimitedStreams: (Participant | Stream)[];
1046
1046
  newLimitedStreamsIDs: string[];
1047
1047
  activeSounds: string[];
1048
1048
  screenShareIDStream: string;
1049
1049
  screenShareNameStream: string;
1050
1050
  adminIDStream: string;
1051
1051
  adminNameStream: string;
1052
- youYouStream: (Stream | Participant)[];
1052
+ youYouStream: (Participant | Stream)[];
1053
1053
  youYouStreamIDs: string[];
1054
1054
  localStream: MediaStream | null;
1055
1055
  recordStarted: boolean;
@@ -1091,15 +1091,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1091
1091
  screenAlreadyOn: boolean;
1092
1092
  chatAlreadyOn: boolean;
1093
1093
  redirectURL: string;
1094
- oldAllStreams: (Stream | Participant)[];
1094
+ oldAllStreams: (Participant | Stream)[];
1095
1095
  adminVidID: string;
1096
1096
  streamNames: Stream[];
1097
1097
  non_alVideoStreams: Participant[];
1098
1098
  sortAudioLoudness: boolean;
1099
1099
  audioDecibels: AudioDecibels[];
1100
- mixed_alVideoStreams: (Stream | Participant)[];
1100
+ mixed_alVideoStreams: (Participant | Stream)[];
1101
1101
  non_alVideoStreams_muted: Participant[];
1102
- paginatedStreams: (Stream | Participant)[][];
1102
+ paginatedStreams: (Participant | Stream)[][];
1103
1103
  localStreamAudio: MediaStream | null;
1104
1104
  defAudioID: string;
1105
1105
  userDefaultAudioInputDevice: string;
@@ -1127,8 +1127,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1127
1127
  prevDoPaginate: boolean;
1128
1128
  doPaginate: boolean;
1129
1129
  shareEnded: boolean;
1130
- lStreams: (Stream | Participant)[];
1131
- chatRefStreams: (Stream | Participant)[];
1130
+ lStreams: (Participant | Stream)[];
1131
+ chatRefStreams: (Participant | Stream)[];
1132
1132
  controlHeight: number;
1133
1133
  isWideScreen: boolean;
1134
1134
  isMediumScreen: boolean;
@@ -1140,11 +1140,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1140
1140
  altGridRows: number;
1141
1141
  altGridCols: number;
1142
1142
  numberPages: number;
1143
- currentStreams: (Stream | Participant)[];
1143
+ currentStreams: (Participant | Stream)[];
1144
1144
  showMiniView: boolean;
1145
1145
  nStream: MediaStream | null;
1146
1146
  defer_receive: boolean;
1147
- allAudioStreams: (Stream | Participant)[];
1147
+ allAudioStreams: (Participant | Stream)[];
1148
1148
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1149
1149
  remoteScreenStream: Stream[];
1150
1150
  gotAllVids: boolean;
@@ -1596,7 +1596,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1596
1596
  updateAnnotateScreenStream: (value: boolean) => void;
1597
1597
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
1598
1598
  updateIsScreenboardModalVisible: (value: boolean) => void;
1599
- checkOrientation: () => "portrait" | "landscape";
1599
+ checkOrientation: () => "landscape" | "portrait";
1600
1600
  updateDevice: (value: Device | null) => void;
1601
1601
  updateSocket: (value: Socket) => void;
1602
1602
  updateValidated: (value: boolean) => void;
@@ -1747,15 +1747,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1747
1747
  landScaped: boolean;
1748
1748
  lock_screen: boolean;
1749
1749
  screenId: string;
1750
- allVideoStreams: (Stream | Participant)[];
1751
- newLimitedStreams: (Stream | Participant)[];
1750
+ allVideoStreams: (Participant | Stream)[];
1751
+ newLimitedStreams: (Participant | Stream)[];
1752
1752
  newLimitedStreamsIDs: string[];
1753
1753
  activeSounds: string[];
1754
1754
  screenShareIDStream: string;
1755
1755
  screenShareNameStream: string;
1756
1756
  adminIDStream: string;
1757
1757
  adminNameStream: string;
1758
- youYouStream: (Stream | Participant)[];
1758
+ youYouStream: (Participant | Stream)[];
1759
1759
  youYouStreamIDs: string[];
1760
1760
  localStream: MediaStream | null;
1761
1761
  recordStarted: boolean;
@@ -1797,15 +1797,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1797
1797
  screenAlreadyOn: boolean;
1798
1798
  chatAlreadyOn: boolean;
1799
1799
  redirectURL: string;
1800
- oldAllStreams: (Stream | Participant)[];
1800
+ oldAllStreams: (Participant | Stream)[];
1801
1801
  adminVidID: string;
1802
1802
  streamNames: Stream[];
1803
1803
  non_alVideoStreams: Participant[];
1804
1804
  sortAudioLoudness: boolean;
1805
1805
  audioDecibels: AudioDecibels[];
1806
- mixed_alVideoStreams: (Stream | Participant)[];
1806
+ mixed_alVideoStreams: (Participant | Stream)[];
1807
1807
  non_alVideoStreams_muted: Participant[];
1808
- paginatedStreams: (Stream | Participant)[][];
1808
+ paginatedStreams: (Participant | Stream)[][];
1809
1809
  localStreamAudio: MediaStream | null;
1810
1810
  defAudioID: string;
1811
1811
  userDefaultAudioInputDevice: string;
@@ -1833,8 +1833,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1833
1833
  prevDoPaginate: boolean;
1834
1834
  doPaginate: boolean;
1835
1835
  shareEnded: boolean;
1836
- lStreams: (Stream | Participant)[];
1837
- chatRefStreams: (Stream | Participant)[];
1836
+ lStreams: (Participant | Stream)[];
1837
+ chatRefStreams: (Participant | Stream)[];
1838
1838
  controlHeight: number;
1839
1839
  isWideScreen: boolean;
1840
1840
  isMediumScreen: boolean;
@@ -1846,11 +1846,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
1846
1846
  altGridRows: number;
1847
1847
  altGridCols: number;
1848
1848
  numberPages: number;
1849
- currentStreams: (Stream | Participant)[];
1849
+ currentStreams: (Participant | Stream)[];
1850
1850
  showMiniView: boolean;
1851
1851
  nStream: MediaStream | null;
1852
1852
  defer_receive: boolean;
1853
- allAudioStreams: (Stream | Participant)[];
1853
+ allAudioStreams: (Participant | Stream)[];
1854
1854
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1855
1855
  remoteScreenStream: Stream[];
1856
1856
  gotAllVids: boolean;
@@ -2302,7 +2302,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
2302
2302
  updateAnnotateScreenStream: (value: boolean) => void;
2303
2303
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
2304
2304
  updateIsScreenboardModalVisible: (value: boolean) => void;
2305
- checkOrientation: () => "portrait" | "landscape";
2305
+ checkOrientation: () => "landscape" | "portrait";
2306
2306
  updateDevice: (value: Device | null) => void;
2307
2307
  updateSocket: (value: Socket) => void;
2308
2308
  updateValidated: (value: boolean) => void;
@@ -2456,15 +2456,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
2456
2456
  landScaped: boolean;
2457
2457
  lock_screen: boolean;
2458
2458
  screenId: string;
2459
- allVideoStreams: (Stream | Participant)[];
2460
- newLimitedStreams: (Stream | Participant)[];
2459
+ allVideoStreams: (Participant | Stream)[];
2460
+ newLimitedStreams: (Participant | Stream)[];
2461
2461
  newLimitedStreamsIDs: string[];
2462
2462
  activeSounds: string[];
2463
2463
  screenShareIDStream: string;
2464
2464
  screenShareNameStream: string;
2465
2465
  adminIDStream: string;
2466
2466
  adminNameStream: string;
2467
- youYouStream: (Stream | Participant)[];
2467
+ youYouStream: (Participant | Stream)[];
2468
2468
  youYouStreamIDs: string[];
2469
2469
  localStream: MediaStream | null;
2470
2470
  recordStarted: boolean;
@@ -2506,15 +2506,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
2506
2506
  screenAlreadyOn: boolean;
2507
2507
  chatAlreadyOn: boolean;
2508
2508
  redirectURL: string;
2509
- oldAllStreams: (Stream | Participant)[];
2509
+ oldAllStreams: (Participant | Stream)[];
2510
2510
  adminVidID: string;
2511
2511
  streamNames: Stream[];
2512
2512
  non_alVideoStreams: Participant[];
2513
2513
  sortAudioLoudness: boolean;
2514
2514
  audioDecibels: AudioDecibels[];
2515
- mixed_alVideoStreams: (Stream | Participant)[];
2515
+ mixed_alVideoStreams: (Participant | Stream)[];
2516
2516
  non_alVideoStreams_muted: Participant[];
2517
- paginatedStreams: (Stream | Participant)[][];
2517
+ paginatedStreams: (Participant | Stream)[][];
2518
2518
  localStreamAudio: MediaStream | null;
2519
2519
  defAudioID: string;
2520
2520
  userDefaultAudioInputDevice: string;
@@ -2542,8 +2542,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
2542
2542
  prevDoPaginate: boolean;
2543
2543
  doPaginate: boolean;
2544
2544
  shareEnded: boolean;
2545
- lStreams: (Stream | Participant)[];
2546
- chatRefStreams: (Stream | Participant)[];
2545
+ lStreams: (Participant | Stream)[];
2546
+ chatRefStreams: (Participant | Stream)[];
2547
2547
  controlHeight: number;
2548
2548
  isWideScreen: boolean;
2549
2549
  isMediumScreen: boolean;
@@ -2555,11 +2555,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
2555
2555
  altGridRows: number;
2556
2556
  altGridCols: number;
2557
2557
  numberPages: number;
2558
- currentStreams: (Stream | Participant)[];
2558
+ currentStreams: (Participant | Stream)[];
2559
2559
  showMiniView: boolean;
2560
2560
  nStream: MediaStream | null;
2561
2561
  defer_receive: boolean;
2562
- allAudioStreams: (Stream | Participant)[];
2562
+ allAudioStreams: (Participant | Stream)[];
2563
2563
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
2564
2564
  remoteScreenStream: Stream[];
2565
2565
  gotAllVids: boolean;
@@ -3011,7 +3011,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3011
3011
  updateAnnotateScreenStream: (value: boolean) => void;
3012
3012
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3013
3013
  updateIsScreenboardModalVisible: (value: boolean) => void;
3014
- checkOrientation: () => "portrait" | "landscape";
3014
+ checkOrientation: () => "landscape" | "portrait";
3015
3015
  updateDevice: (value: Device | null) => void;
3016
3016
  updateSocket: (value: Socket) => void;
3017
3017
  updateValidated: (value: boolean) => void;
@@ -3162,15 +3162,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3162
3162
  landScaped: boolean;
3163
3163
  lock_screen: boolean;
3164
3164
  screenId: string;
3165
- allVideoStreams: (Stream | Participant)[];
3166
- newLimitedStreams: (Stream | Participant)[];
3165
+ allVideoStreams: (Participant | Stream)[];
3166
+ newLimitedStreams: (Participant | Stream)[];
3167
3167
  newLimitedStreamsIDs: string[];
3168
3168
  activeSounds: string[];
3169
3169
  screenShareIDStream: string;
3170
3170
  screenShareNameStream: string;
3171
3171
  adminIDStream: string;
3172
3172
  adminNameStream: string;
3173
- youYouStream: (Stream | Participant)[];
3173
+ youYouStream: (Participant | Stream)[];
3174
3174
  youYouStreamIDs: string[];
3175
3175
  localStream: MediaStream | null;
3176
3176
  recordStarted: boolean;
@@ -3212,15 +3212,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3212
3212
  screenAlreadyOn: boolean;
3213
3213
  chatAlreadyOn: boolean;
3214
3214
  redirectURL: string;
3215
- oldAllStreams: (Stream | Participant)[];
3215
+ oldAllStreams: (Participant | Stream)[];
3216
3216
  adminVidID: string;
3217
3217
  streamNames: Stream[];
3218
3218
  non_alVideoStreams: Participant[];
3219
3219
  sortAudioLoudness: boolean;
3220
3220
  audioDecibels: AudioDecibels[];
3221
- mixed_alVideoStreams: (Stream | Participant)[];
3221
+ mixed_alVideoStreams: (Participant | Stream)[];
3222
3222
  non_alVideoStreams_muted: Participant[];
3223
- paginatedStreams: (Stream | Participant)[][];
3223
+ paginatedStreams: (Participant | Stream)[][];
3224
3224
  localStreamAudio: MediaStream | null;
3225
3225
  defAudioID: string;
3226
3226
  userDefaultAudioInputDevice: string;
@@ -3248,8 +3248,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3248
3248
  prevDoPaginate: boolean;
3249
3249
  doPaginate: boolean;
3250
3250
  shareEnded: boolean;
3251
- lStreams: (Stream | Participant)[];
3252
- chatRefStreams: (Stream | Participant)[];
3251
+ lStreams: (Participant | Stream)[];
3252
+ chatRefStreams: (Participant | Stream)[];
3253
3253
  controlHeight: number;
3254
3254
  isWideScreen: boolean;
3255
3255
  isMediumScreen: boolean;
@@ -3261,11 +3261,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3261
3261
  altGridRows: number;
3262
3262
  altGridCols: number;
3263
3263
  numberPages: number;
3264
- currentStreams: (Stream | Participant)[];
3264
+ currentStreams: (Participant | Stream)[];
3265
3265
  showMiniView: boolean;
3266
3266
  nStream: MediaStream | null;
3267
3267
  defer_receive: boolean;
3268
- allAudioStreams: (Stream | Participant)[];
3268
+ allAudioStreams: (Participant | Stream)[];
3269
3269
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
3270
3270
  remoteScreenStream: Stream[];
3271
3271
  gotAllVids: boolean;
@@ -3717,7 +3717,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3717
3717
  updateAnnotateScreenStream: (value: boolean) => void;
3718
3718
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3719
3719
  updateIsScreenboardModalVisible: (value: boolean) => void;
3720
- checkOrientation: () => "portrait" | "landscape";
3720
+ checkOrientation: () => "landscape" | "portrait";
3721
3721
  updateDevice: (value: Device | null) => void;
3722
3722
  updateSocket: (value: Socket) => void;
3723
3723
  updateValidated: (value: boolean) => void;
@@ -3871,15 +3871,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3871
3871
  landScaped: boolean;
3872
3872
  lock_screen: boolean;
3873
3873
  screenId: string;
3874
- allVideoStreams: (Stream | Participant)[];
3875
- newLimitedStreams: (Stream | Participant)[];
3874
+ allVideoStreams: (Participant | Stream)[];
3875
+ newLimitedStreams: (Participant | Stream)[];
3876
3876
  newLimitedStreamsIDs: string[];
3877
3877
  activeSounds: string[];
3878
3878
  screenShareIDStream: string;
3879
3879
  screenShareNameStream: string;
3880
3880
  adminIDStream: string;
3881
3881
  adminNameStream: string;
3882
- youYouStream: (Stream | Participant)[];
3882
+ youYouStream: (Participant | Stream)[];
3883
3883
  youYouStreamIDs: string[];
3884
3884
  localStream: MediaStream | null;
3885
3885
  recordStarted: boolean;
@@ -3921,15 +3921,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3921
3921
  screenAlreadyOn: boolean;
3922
3922
  chatAlreadyOn: boolean;
3923
3923
  redirectURL: string;
3924
- oldAllStreams: (Stream | Participant)[];
3924
+ oldAllStreams: (Participant | Stream)[];
3925
3925
  adminVidID: string;
3926
3926
  streamNames: Stream[];
3927
3927
  non_alVideoStreams: Participant[];
3928
3928
  sortAudioLoudness: boolean;
3929
3929
  audioDecibels: AudioDecibels[];
3930
- mixed_alVideoStreams: (Stream | Participant)[];
3930
+ mixed_alVideoStreams: (Participant | Stream)[];
3931
3931
  non_alVideoStreams_muted: Participant[];
3932
- paginatedStreams: (Stream | Participant)[][];
3932
+ paginatedStreams: (Participant | Stream)[][];
3933
3933
  localStreamAudio: MediaStream | null;
3934
3934
  defAudioID: string;
3935
3935
  userDefaultAudioInputDevice: string;
@@ -3957,8 +3957,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3957
3957
  prevDoPaginate: boolean;
3958
3958
  doPaginate: boolean;
3959
3959
  shareEnded: boolean;
3960
- lStreams: (Stream | Participant)[];
3961
- chatRefStreams: (Stream | Participant)[];
3960
+ lStreams: (Participant | Stream)[];
3961
+ chatRefStreams: (Participant | Stream)[];
3962
3962
  controlHeight: number;
3963
3963
  isWideScreen: boolean;
3964
3964
  isMediumScreen: boolean;
@@ -3970,11 +3970,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
3970
3970
  altGridRows: number;
3971
3971
  altGridCols: number;
3972
3972
  numberPages: number;
3973
- currentStreams: (Stream | Participant)[];
3973
+ currentStreams: (Participant | Stream)[];
3974
3974
  showMiniView: boolean;
3975
3975
  nStream: MediaStream | null;
3976
3976
  defer_receive: boolean;
3977
- allAudioStreams: (Stream | Participant)[];
3977
+ allAudioStreams: (Participant | Stream)[];
3978
3978
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
3979
3979
  remoteScreenStream: Stream[];
3980
3980
  gotAllVids: boolean;
@@ -4426,7 +4426,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
4426
4426
  updateAnnotateScreenStream: (value: boolean) => void;
4427
4427
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
4428
4428
  updateIsScreenboardModalVisible: (value: boolean) => void;
4429
- checkOrientation: () => "portrait" | "landscape";
4429
+ checkOrientation: () => "landscape" | "portrait";
4430
4430
  updateDevice: (value: Device | null) => void;
4431
4431
  updateSocket: (value: Socket) => void;
4432
4432
  updateValidated: (value: boolean) => void;
@@ -4577,15 +4577,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
4577
4577
  landScaped: boolean;
4578
4578
  lock_screen: boolean;
4579
4579
  screenId: string;
4580
- allVideoStreams: (Stream | Participant)[];
4581
- newLimitedStreams: (Stream | Participant)[];
4580
+ allVideoStreams: (Participant | Stream)[];
4581
+ newLimitedStreams: (Participant | Stream)[];
4582
4582
  newLimitedStreamsIDs: string[];
4583
4583
  activeSounds: string[];
4584
4584
  screenShareIDStream: string;
4585
4585
  screenShareNameStream: string;
4586
4586
  adminIDStream: string;
4587
4587
  adminNameStream: string;
4588
- youYouStream: (Stream | Participant)[];
4588
+ youYouStream: (Participant | Stream)[];
4589
4589
  youYouStreamIDs: string[];
4590
4590
  localStream: MediaStream | null;
4591
4591
  recordStarted: boolean;
@@ -4627,15 +4627,15 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
4627
4627
  screenAlreadyOn: boolean;
4628
4628
  chatAlreadyOn: boolean;
4629
4629
  redirectURL: string;
4630
- oldAllStreams: (Stream | Participant)[];
4630
+ oldAllStreams: (Participant | Stream)[];
4631
4631
  adminVidID: string;
4632
4632
  streamNames: Stream[];
4633
4633
  non_alVideoStreams: Participant[];
4634
4634
  sortAudioLoudness: boolean;
4635
4635
  audioDecibels: AudioDecibels[];
4636
- mixed_alVideoStreams: (Stream | Participant)[];
4636
+ mixed_alVideoStreams: (Participant | Stream)[];
4637
4637
  non_alVideoStreams_muted: Participant[];
4638
- paginatedStreams: (Stream | Participant)[][];
4638
+ paginatedStreams: (Participant | Stream)[][];
4639
4639
  localStreamAudio: MediaStream | null;
4640
4640
  defAudioID: string;
4641
4641
  userDefaultAudioInputDevice: string;
@@ -4663,8 +4663,8 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
4663
4663
  prevDoPaginate: boolean;
4664
4664
  doPaginate: boolean;
4665
4665
  shareEnded: boolean;
4666
- lStreams: (Stream | Participant)[];
4667
- chatRefStreams: (Stream | Participant)[];
4666
+ lStreams: (Participant | Stream)[];
4667
+ chatRefStreams: (Participant | Stream)[];
4668
4668
  controlHeight: number;
4669
4669
  isWideScreen: boolean;
4670
4670
  isMediumScreen: boolean;
@@ -4676,11 +4676,11 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
4676
4676
  altGridRows: number;
4677
4677
  altGridCols: number;
4678
4678
  numberPages: number;
4679
- currentStreams: (Stream | Participant)[];
4679
+ currentStreams: (Participant | Stream)[];
4680
4680
  showMiniView: boolean;
4681
4681
  nStream: MediaStream | null;
4682
4682
  defer_receive: boolean;
4683
- allAudioStreams: (Stream | Participant)[];
4683
+ allAudioStreams: (Participant | Stream)[];
4684
4684
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
4685
4685
  remoteScreenStream: Stream[];
4686
4686
  gotAllVids: boolean;
@@ -5132,7 +5132,7 @@ export declare class MediasfuBroadcast implements OnInit, OnDestroy {
5132
5132
  updateAnnotateScreenStream: (value: boolean) => void;
5133
5133
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
5134
5134
  updateIsScreenboardModalVisible: (value: boolean) => void;
5135
- checkOrientation: () => "portrait" | "landscape";
5135
+ checkOrientation: () => "landscape" | "portrait";
5136
5136
  updateDevice: (value: Device | null) => void;
5137
5137
  updateSocket: (value: Socket) => void;
5138
5138
  updateValidated: (value: boolean) => void;