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.
@@ -447,15 +447,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
447
447
  landScaped: BehaviorSubject<boolean>;
448
448
  lock_screen: BehaviorSubject<boolean>;
449
449
  screenId: BehaviorSubject<string>;
450
- allVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
451
- newLimitedStreams: BehaviorSubject<(Stream | Participant)[]>;
450
+ allVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
451
+ newLimitedStreams: BehaviorSubject<(Participant | Stream)[]>;
452
452
  newLimitedStreamsIDs: BehaviorSubject<string[]>;
453
453
  activeSounds: BehaviorSubject<string[]>;
454
454
  screenShareIDStream: BehaviorSubject<string>;
455
455
  screenShareNameStream: BehaviorSubject<string>;
456
456
  adminIDStream: BehaviorSubject<string>;
457
457
  adminNameStream: BehaviorSubject<string>;
458
- youYouStream: BehaviorSubject<(Stream | Participant)[]>;
458
+ youYouStream: BehaviorSubject<(Participant | Stream)[]>;
459
459
  youYouStreamIDs: BehaviorSubject<string[]>;
460
460
  localStream: BehaviorSubject<MediaStream | null>;
461
461
  recordStarted: BehaviorSubject<boolean>;
@@ -497,15 +497,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
497
497
  screenAlreadyOn: BehaviorSubject<boolean>;
498
498
  chatAlreadyOn: BehaviorSubject<boolean>;
499
499
  redirectURL: BehaviorSubject<string>;
500
- oldAllStreams: BehaviorSubject<(Stream | Participant)[]>;
500
+ oldAllStreams: BehaviorSubject<(Participant | Stream)[]>;
501
501
  adminVidID: BehaviorSubject<string>;
502
502
  streamNames: BehaviorSubject<Stream[]>;
503
503
  non_alVideoStreams: BehaviorSubject<Participant[]>;
504
504
  sortAudioLoudness: BehaviorSubject<boolean>;
505
505
  audioDecibels: BehaviorSubject<AudioDecibels[]>;
506
- mixed_alVideoStreams: BehaviorSubject<(Stream | Participant)[]>;
506
+ mixed_alVideoStreams: BehaviorSubject<(Participant | Stream)[]>;
507
507
  non_alVideoStreams_muted: BehaviorSubject<Participant[]>;
508
- paginatedStreams: BehaviorSubject<(Stream | Participant)[][]>;
508
+ paginatedStreams: BehaviorSubject<(Participant | Stream)[][]>;
509
509
  localStreamAudio: BehaviorSubject<MediaStream | null>;
510
510
  defAudioID: BehaviorSubject<string>;
511
511
  userDefaultAudioInputDevice: BehaviorSubject<string>;
@@ -533,8 +533,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
533
533
  prevDoPaginate: BehaviorSubject<boolean>;
534
534
  doPaginate: BehaviorSubject<boolean>;
535
535
  shareEnded: BehaviorSubject<boolean>;
536
- lStreams: BehaviorSubject<(Stream | Participant)[]>;
537
- chatRefStreams: BehaviorSubject<(Stream | Participant)[]>;
536
+ lStreams: BehaviorSubject<(Participant | Stream)[]>;
537
+ chatRefStreams: BehaviorSubject<(Participant | Stream)[]>;
538
538
  controlHeight: BehaviorSubject<number>;
539
539
  isWideScreen: BehaviorSubject<boolean>;
540
540
  isMediumScreen: BehaviorSubject<boolean>;
@@ -546,11 +546,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
546
546
  altGridRows: BehaviorSubject<number>;
547
547
  altGridCols: BehaviorSubject<number>;
548
548
  numberPages: BehaviorSubject<number>;
549
- currentStreams: BehaviorSubject<(Stream | Participant)[]>;
549
+ currentStreams: BehaviorSubject<(Participant | Stream)[]>;
550
550
  showMiniView: BehaviorSubject<boolean>;
551
551
  nStream: BehaviorSubject<MediaStream | null>;
552
552
  defer_receive: BehaviorSubject<boolean>;
553
- allAudioStreams: BehaviorSubject<(Stream | Participant)[]>;
553
+ allAudioStreams: BehaviorSubject<(Participant | Stream)[]>;
554
554
  remoteScreenStream: BehaviorSubject<Stream[]>;
555
555
  screenProducer: BehaviorSubject<Producer<import("mediasoup-client/lib/types").AppData> | null>;
556
556
  gotAllVids: BehaviorSubject<boolean>;
@@ -1028,7 +1028,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1028
1028
  updateAnnotateScreenStream: (value: boolean) => void;
1029
1029
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
1030
1030
  updateIsScreenboardModalVisible: (value: boolean) => void;
1031
- checkOrientation: () => "portrait" | "landscape";
1031
+ checkOrientation: () => "landscape" | "portrait";
1032
1032
  showAlert: ({ message, type, duration, }: {
1033
1033
  message: string;
1034
1034
  type: "success" | "danger";
@@ -1106,15 +1106,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1106
1106
  landScaped: boolean;
1107
1107
  lock_screen: boolean;
1108
1108
  screenId: string;
1109
- allVideoStreams: (Stream | Participant)[];
1110
- newLimitedStreams: (Stream | Participant)[];
1109
+ allVideoStreams: (Participant | Stream)[];
1110
+ newLimitedStreams: (Participant | Stream)[];
1111
1111
  newLimitedStreamsIDs: string[];
1112
1112
  activeSounds: string[];
1113
1113
  screenShareIDStream: string;
1114
1114
  screenShareNameStream: string;
1115
1115
  adminIDStream: string;
1116
1116
  adminNameStream: string;
1117
- youYouStream: (Stream | Participant)[];
1117
+ youYouStream: (Participant | Stream)[];
1118
1118
  youYouStreamIDs: string[];
1119
1119
  localStream: MediaStream | null;
1120
1120
  recordStarted: boolean;
@@ -1156,15 +1156,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1156
1156
  screenAlreadyOn: boolean;
1157
1157
  chatAlreadyOn: boolean;
1158
1158
  redirectURL: string;
1159
- oldAllStreams: (Stream | Participant)[];
1159
+ oldAllStreams: (Participant | Stream)[];
1160
1160
  adminVidID: string;
1161
1161
  streamNames: Stream[];
1162
1162
  non_alVideoStreams: Participant[];
1163
1163
  sortAudioLoudness: boolean;
1164
1164
  audioDecibels: AudioDecibels[];
1165
- mixed_alVideoStreams: (Stream | Participant)[];
1165
+ mixed_alVideoStreams: (Participant | Stream)[];
1166
1166
  non_alVideoStreams_muted: Participant[];
1167
- paginatedStreams: (Stream | Participant)[][];
1167
+ paginatedStreams: (Participant | Stream)[][];
1168
1168
  localStreamAudio: MediaStream | null;
1169
1169
  defAudioID: string;
1170
1170
  userDefaultAudioInputDevice: string;
@@ -1192,8 +1192,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1192
1192
  prevDoPaginate: boolean;
1193
1193
  doPaginate: boolean;
1194
1194
  shareEnded: boolean;
1195
- lStreams: (Stream | Participant)[];
1196
- chatRefStreams: (Stream | Participant)[];
1195
+ lStreams: (Participant | Stream)[];
1196
+ chatRefStreams: (Participant | Stream)[];
1197
1197
  controlHeight: number;
1198
1198
  isWideScreen: boolean;
1199
1199
  isMediumScreen: boolean;
@@ -1205,11 +1205,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1205
1205
  altGridRows: number;
1206
1206
  altGridCols: number;
1207
1207
  numberPages: number;
1208
- currentStreams: (Stream | Participant)[];
1208
+ currentStreams: (Participant | Stream)[];
1209
1209
  showMiniView: boolean;
1210
1210
  nStream: MediaStream | null;
1211
1211
  defer_receive: boolean;
1212
- allAudioStreams: (Stream | Participant)[];
1212
+ allAudioStreams: (Participant | Stream)[];
1213
1213
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1214
1214
  remoteScreenStream: Stream[];
1215
1215
  gotAllVids: boolean;
@@ -1661,7 +1661,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1661
1661
  updateAnnotateScreenStream: (value: boolean) => void;
1662
1662
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
1663
1663
  updateIsScreenboardModalVisible: (value: boolean) => void;
1664
- checkOrientation: () => "portrait" | "landscape";
1664
+ checkOrientation: () => "landscape" | "portrait";
1665
1665
  updateDevice: (value: Device | null) => void;
1666
1666
  updateSocket: (value: Socket) => void;
1667
1667
  updateValidated: (value: boolean) => void;
@@ -1815,15 +1815,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1815
1815
  landScaped: boolean;
1816
1816
  lock_screen: boolean;
1817
1817
  screenId: string;
1818
- allVideoStreams: (Stream | Participant)[];
1819
- newLimitedStreams: (Stream | Participant)[];
1818
+ allVideoStreams: (Participant | Stream)[];
1819
+ newLimitedStreams: (Participant | Stream)[];
1820
1820
  newLimitedStreamsIDs: string[];
1821
1821
  activeSounds: string[];
1822
1822
  screenShareIDStream: string;
1823
1823
  screenShareNameStream: string;
1824
1824
  adminIDStream: string;
1825
1825
  adminNameStream: string;
1826
- youYouStream: (Stream | Participant)[];
1826
+ youYouStream: (Participant | Stream)[];
1827
1827
  youYouStreamIDs: string[];
1828
1828
  localStream: MediaStream | null;
1829
1829
  recordStarted: boolean;
@@ -1865,15 +1865,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1865
1865
  screenAlreadyOn: boolean;
1866
1866
  chatAlreadyOn: boolean;
1867
1867
  redirectURL: string;
1868
- oldAllStreams: (Stream | Participant)[];
1868
+ oldAllStreams: (Participant | Stream)[];
1869
1869
  adminVidID: string;
1870
1870
  streamNames: Stream[];
1871
1871
  non_alVideoStreams: Participant[];
1872
1872
  sortAudioLoudness: boolean;
1873
1873
  audioDecibels: AudioDecibels[];
1874
- mixed_alVideoStreams: (Stream | Participant)[];
1874
+ mixed_alVideoStreams: (Participant | Stream)[];
1875
1875
  non_alVideoStreams_muted: Participant[];
1876
- paginatedStreams: (Stream | Participant)[][];
1876
+ paginatedStreams: (Participant | Stream)[][];
1877
1877
  localStreamAudio: MediaStream | null;
1878
1878
  defAudioID: string;
1879
1879
  userDefaultAudioInputDevice: string;
@@ -1901,8 +1901,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1901
1901
  prevDoPaginate: boolean;
1902
1902
  doPaginate: boolean;
1903
1903
  shareEnded: boolean;
1904
- lStreams: (Stream | Participant)[];
1905
- chatRefStreams: (Stream | Participant)[];
1904
+ lStreams: (Participant | Stream)[];
1905
+ chatRefStreams: (Participant | Stream)[];
1906
1906
  controlHeight: number;
1907
1907
  isWideScreen: boolean;
1908
1908
  isMediumScreen: boolean;
@@ -1914,11 +1914,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
1914
1914
  altGridRows: number;
1915
1915
  altGridCols: number;
1916
1916
  numberPages: number;
1917
- currentStreams: (Stream | Participant)[];
1917
+ currentStreams: (Participant | Stream)[];
1918
1918
  showMiniView: boolean;
1919
1919
  nStream: MediaStream | null;
1920
1920
  defer_receive: boolean;
1921
- allAudioStreams: (Stream | Participant)[];
1921
+ allAudioStreams: (Participant | Stream)[];
1922
1922
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
1923
1923
  remoteScreenStream: Stream[];
1924
1924
  gotAllVids: boolean;
@@ -2370,7 +2370,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
2370
2370
  updateAnnotateScreenStream: (value: boolean) => void;
2371
2371
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
2372
2372
  updateIsScreenboardModalVisible: (value: boolean) => void;
2373
- checkOrientation: () => "portrait" | "landscape";
2373
+ checkOrientation: () => "landscape" | "portrait";
2374
2374
  updateDevice: (value: Device | null) => void;
2375
2375
  updateSocket: (value: Socket) => void;
2376
2376
  updateValidated: (value: boolean) => void;
@@ -2527,15 +2527,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
2527
2527
  landScaped: boolean;
2528
2528
  lock_screen: boolean;
2529
2529
  screenId: string;
2530
- allVideoStreams: (Stream | Participant)[];
2531
- newLimitedStreams: (Stream | Participant)[];
2530
+ allVideoStreams: (Participant | Stream)[];
2531
+ newLimitedStreams: (Participant | Stream)[];
2532
2532
  newLimitedStreamsIDs: string[];
2533
2533
  activeSounds: string[];
2534
2534
  screenShareIDStream: string;
2535
2535
  screenShareNameStream: string;
2536
2536
  adminIDStream: string;
2537
2537
  adminNameStream: string;
2538
- youYouStream: (Stream | Participant)[];
2538
+ youYouStream: (Participant | Stream)[];
2539
2539
  youYouStreamIDs: string[];
2540
2540
  localStream: MediaStream | null;
2541
2541
  recordStarted: boolean;
@@ -2577,15 +2577,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
2577
2577
  screenAlreadyOn: boolean;
2578
2578
  chatAlreadyOn: boolean;
2579
2579
  redirectURL: string;
2580
- oldAllStreams: (Stream | Participant)[];
2580
+ oldAllStreams: (Participant | Stream)[];
2581
2581
  adminVidID: string;
2582
2582
  streamNames: Stream[];
2583
2583
  non_alVideoStreams: Participant[];
2584
2584
  sortAudioLoudness: boolean;
2585
2585
  audioDecibels: AudioDecibels[];
2586
- mixed_alVideoStreams: (Stream | Participant)[];
2586
+ mixed_alVideoStreams: (Participant | Stream)[];
2587
2587
  non_alVideoStreams_muted: Participant[];
2588
- paginatedStreams: (Stream | Participant)[][];
2588
+ paginatedStreams: (Participant | Stream)[][];
2589
2589
  localStreamAudio: MediaStream | null;
2590
2590
  defAudioID: string;
2591
2591
  userDefaultAudioInputDevice: string;
@@ -2613,8 +2613,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
2613
2613
  prevDoPaginate: boolean;
2614
2614
  doPaginate: boolean;
2615
2615
  shareEnded: boolean;
2616
- lStreams: (Stream | Participant)[];
2617
- chatRefStreams: (Stream | Participant)[];
2616
+ lStreams: (Participant | Stream)[];
2617
+ chatRefStreams: (Participant | Stream)[];
2618
2618
  controlHeight: number;
2619
2619
  isWideScreen: boolean;
2620
2620
  isMediumScreen: boolean;
@@ -2626,11 +2626,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
2626
2626
  altGridRows: number;
2627
2627
  altGridCols: number;
2628
2628
  numberPages: number;
2629
- currentStreams: (Stream | Participant)[];
2629
+ currentStreams: (Participant | Stream)[];
2630
2630
  showMiniView: boolean;
2631
2631
  nStream: MediaStream | null;
2632
2632
  defer_receive: boolean;
2633
- allAudioStreams: (Stream | Participant)[];
2633
+ allAudioStreams: (Participant | Stream)[];
2634
2634
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
2635
2635
  remoteScreenStream: Stream[];
2636
2636
  gotAllVids: boolean;
@@ -3082,7 +3082,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3082
3082
  updateAnnotateScreenStream: (value: boolean) => void;
3083
3083
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3084
3084
  updateIsScreenboardModalVisible: (value: boolean) => void;
3085
- checkOrientation: () => "portrait" | "landscape";
3085
+ checkOrientation: () => "landscape" | "portrait";
3086
3086
  updateDevice: (value: Device | null) => void;
3087
3087
  updateSocket: (value: Socket) => void;
3088
3088
  updateValidated: (value: boolean) => void;
@@ -3236,15 +3236,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3236
3236
  landScaped: boolean;
3237
3237
  lock_screen: boolean;
3238
3238
  screenId: string;
3239
- allVideoStreams: (Stream | Participant)[];
3240
- newLimitedStreams: (Stream | Participant)[];
3239
+ allVideoStreams: (Participant | Stream)[];
3240
+ newLimitedStreams: (Participant | Stream)[];
3241
3241
  newLimitedStreamsIDs: string[];
3242
3242
  activeSounds: string[];
3243
3243
  screenShareIDStream: string;
3244
3244
  screenShareNameStream: string;
3245
3245
  adminIDStream: string;
3246
3246
  adminNameStream: string;
3247
- youYouStream: (Stream | Participant)[];
3247
+ youYouStream: (Participant | Stream)[];
3248
3248
  youYouStreamIDs: string[];
3249
3249
  localStream: MediaStream | null;
3250
3250
  recordStarted: boolean;
@@ -3286,15 +3286,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3286
3286
  screenAlreadyOn: boolean;
3287
3287
  chatAlreadyOn: boolean;
3288
3288
  redirectURL: string;
3289
- oldAllStreams: (Stream | Participant)[];
3289
+ oldAllStreams: (Participant | Stream)[];
3290
3290
  adminVidID: string;
3291
3291
  streamNames: Stream[];
3292
3292
  non_alVideoStreams: Participant[];
3293
3293
  sortAudioLoudness: boolean;
3294
3294
  audioDecibels: AudioDecibels[];
3295
- mixed_alVideoStreams: (Stream | Participant)[];
3295
+ mixed_alVideoStreams: (Participant | Stream)[];
3296
3296
  non_alVideoStreams_muted: Participant[];
3297
- paginatedStreams: (Stream | Participant)[][];
3297
+ paginatedStreams: (Participant | Stream)[][];
3298
3298
  localStreamAudio: MediaStream | null;
3299
3299
  defAudioID: string;
3300
3300
  userDefaultAudioInputDevice: string;
@@ -3322,8 +3322,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3322
3322
  prevDoPaginate: boolean;
3323
3323
  doPaginate: boolean;
3324
3324
  shareEnded: boolean;
3325
- lStreams: (Stream | Participant)[];
3326
- chatRefStreams: (Stream | Participant)[];
3325
+ lStreams: (Participant | Stream)[];
3326
+ chatRefStreams: (Participant | Stream)[];
3327
3327
  controlHeight: number;
3328
3328
  isWideScreen: boolean;
3329
3329
  isMediumScreen: boolean;
@@ -3335,11 +3335,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3335
3335
  altGridRows: number;
3336
3336
  altGridCols: number;
3337
3337
  numberPages: number;
3338
- currentStreams: (Stream | Participant)[];
3338
+ currentStreams: (Participant | Stream)[];
3339
3339
  showMiniView: boolean;
3340
3340
  nStream: MediaStream | null;
3341
3341
  defer_receive: boolean;
3342
- allAudioStreams: (Stream | Participant)[];
3342
+ allAudioStreams: (Participant | Stream)[];
3343
3343
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
3344
3344
  remoteScreenStream: Stream[];
3345
3345
  gotAllVids: boolean;
@@ -3791,7 +3791,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3791
3791
  updateAnnotateScreenStream: (value: boolean) => void;
3792
3792
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
3793
3793
  updateIsScreenboardModalVisible: (value: boolean) => void;
3794
- checkOrientation: () => "portrait" | "landscape";
3794
+ checkOrientation: () => "landscape" | "portrait";
3795
3795
  updateDevice: (value: Device | null) => void;
3796
3796
  updateSocket: (value: Socket) => void;
3797
3797
  updateValidated: (value: boolean) => void;
@@ -3948,15 +3948,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3948
3948
  landScaped: boolean;
3949
3949
  lock_screen: boolean;
3950
3950
  screenId: string;
3951
- allVideoStreams: (Stream | Participant)[];
3952
- newLimitedStreams: (Stream | Participant)[];
3951
+ allVideoStreams: (Participant | Stream)[];
3952
+ newLimitedStreams: (Participant | Stream)[];
3953
3953
  newLimitedStreamsIDs: string[];
3954
3954
  activeSounds: string[];
3955
3955
  screenShareIDStream: string;
3956
3956
  screenShareNameStream: string;
3957
3957
  adminIDStream: string;
3958
3958
  adminNameStream: string;
3959
- youYouStream: (Stream | Participant)[];
3959
+ youYouStream: (Participant | Stream)[];
3960
3960
  youYouStreamIDs: string[];
3961
3961
  localStream: MediaStream | null;
3962
3962
  recordStarted: boolean;
@@ -3998,15 +3998,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
3998
3998
  screenAlreadyOn: boolean;
3999
3999
  chatAlreadyOn: boolean;
4000
4000
  redirectURL: string;
4001
- oldAllStreams: (Stream | Participant)[];
4001
+ oldAllStreams: (Participant | Stream)[];
4002
4002
  adminVidID: string;
4003
4003
  streamNames: Stream[];
4004
4004
  non_alVideoStreams: Participant[];
4005
4005
  sortAudioLoudness: boolean;
4006
4006
  audioDecibels: AudioDecibels[];
4007
- mixed_alVideoStreams: (Stream | Participant)[];
4007
+ mixed_alVideoStreams: (Participant | Stream)[];
4008
4008
  non_alVideoStreams_muted: Participant[];
4009
- paginatedStreams: (Stream | Participant)[][];
4009
+ paginatedStreams: (Participant | Stream)[][];
4010
4010
  localStreamAudio: MediaStream | null;
4011
4011
  defAudioID: string;
4012
4012
  userDefaultAudioInputDevice: string;
@@ -4034,8 +4034,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4034
4034
  prevDoPaginate: boolean;
4035
4035
  doPaginate: boolean;
4036
4036
  shareEnded: boolean;
4037
- lStreams: (Stream | Participant)[];
4038
- chatRefStreams: (Stream | Participant)[];
4037
+ lStreams: (Participant | Stream)[];
4038
+ chatRefStreams: (Participant | Stream)[];
4039
4039
  controlHeight: number;
4040
4040
  isWideScreen: boolean;
4041
4041
  isMediumScreen: boolean;
@@ -4047,11 +4047,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4047
4047
  altGridRows: number;
4048
4048
  altGridCols: number;
4049
4049
  numberPages: number;
4050
- currentStreams: (Stream | Participant)[];
4050
+ currentStreams: (Participant | Stream)[];
4051
4051
  showMiniView: boolean;
4052
4052
  nStream: MediaStream | null;
4053
4053
  defer_receive: boolean;
4054
- allAudioStreams: (Stream | Participant)[];
4054
+ allAudioStreams: (Participant | Stream)[];
4055
4055
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
4056
4056
  remoteScreenStream: Stream[];
4057
4057
  gotAllVids: boolean;
@@ -4503,7 +4503,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4503
4503
  updateAnnotateScreenStream: (value: boolean) => void;
4504
4504
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
4505
4505
  updateIsScreenboardModalVisible: (value: boolean) => void;
4506
- checkOrientation: () => "portrait" | "landscape";
4506
+ checkOrientation: () => "landscape" | "portrait";
4507
4507
  updateDevice: (value: Device | null) => void;
4508
4508
  updateSocket: (value: Socket) => void;
4509
4509
  updateValidated: (value: boolean) => void;
@@ -4657,15 +4657,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4657
4657
  landScaped: boolean;
4658
4658
  lock_screen: boolean;
4659
4659
  screenId: string;
4660
- allVideoStreams: (Stream | Participant)[];
4661
- newLimitedStreams: (Stream | Participant)[];
4660
+ allVideoStreams: (Participant | Stream)[];
4661
+ newLimitedStreams: (Participant | Stream)[];
4662
4662
  newLimitedStreamsIDs: string[];
4663
4663
  activeSounds: string[];
4664
4664
  screenShareIDStream: string;
4665
4665
  screenShareNameStream: string;
4666
4666
  adminIDStream: string;
4667
4667
  adminNameStream: string;
4668
- youYouStream: (Stream | Participant)[];
4668
+ youYouStream: (Participant | Stream)[];
4669
4669
  youYouStreamIDs: string[];
4670
4670
  localStream: MediaStream | null;
4671
4671
  recordStarted: boolean;
@@ -4707,15 +4707,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4707
4707
  screenAlreadyOn: boolean;
4708
4708
  chatAlreadyOn: boolean;
4709
4709
  redirectURL: string;
4710
- oldAllStreams: (Stream | Participant)[];
4710
+ oldAllStreams: (Participant | Stream)[];
4711
4711
  adminVidID: string;
4712
4712
  streamNames: Stream[];
4713
4713
  non_alVideoStreams: Participant[];
4714
4714
  sortAudioLoudness: boolean;
4715
4715
  audioDecibels: AudioDecibels[];
4716
- mixed_alVideoStreams: (Stream | Participant)[];
4716
+ mixed_alVideoStreams: (Participant | Stream)[];
4717
4717
  non_alVideoStreams_muted: Participant[];
4718
- paginatedStreams: (Stream | Participant)[][];
4718
+ paginatedStreams: (Participant | Stream)[][];
4719
4719
  localStreamAudio: MediaStream | null;
4720
4720
  defAudioID: string;
4721
4721
  userDefaultAudioInputDevice: string;
@@ -4743,8 +4743,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4743
4743
  prevDoPaginate: boolean;
4744
4744
  doPaginate: boolean;
4745
4745
  shareEnded: boolean;
4746
- lStreams: (Stream | Participant)[];
4747
- chatRefStreams: (Stream | Participant)[];
4746
+ lStreams: (Participant | Stream)[];
4747
+ chatRefStreams: (Participant | Stream)[];
4748
4748
  controlHeight: number;
4749
4749
  isWideScreen: boolean;
4750
4750
  isMediumScreen: boolean;
@@ -4756,11 +4756,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
4756
4756
  altGridRows: number;
4757
4757
  altGridCols: number;
4758
4758
  numberPages: number;
4759
- currentStreams: (Stream | Participant)[];
4759
+ currentStreams: (Participant | Stream)[];
4760
4760
  showMiniView: boolean;
4761
4761
  nStream: MediaStream | null;
4762
4762
  defer_receive: boolean;
4763
- allAudioStreams: (Stream | Participant)[];
4763
+ allAudioStreams: (Participant | Stream)[];
4764
4764
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
4765
4765
  remoteScreenStream: Stream[];
4766
4766
  gotAllVids: boolean;
@@ -5212,7 +5212,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
5212
5212
  updateAnnotateScreenStream: (value: boolean) => void;
5213
5213
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
5214
5214
  updateIsScreenboardModalVisible: (value: boolean) => void;
5215
- checkOrientation: () => "portrait" | "landscape";
5215
+ checkOrientation: () => "landscape" | "portrait";
5216
5216
  updateDevice: (value: Device | null) => void;
5217
5217
  updateSocket: (value: Socket) => void;
5218
5218
  updateValidated: (value: boolean) => void;
@@ -5461,15 +5461,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
5461
5461
  landScaped: boolean;
5462
5462
  lock_screen: boolean;
5463
5463
  screenId: string;
5464
- allVideoStreams: (Stream | Participant)[];
5465
- newLimitedStreams: (Stream | Participant)[];
5464
+ allVideoStreams: (Participant | Stream)[];
5465
+ newLimitedStreams: (Participant | Stream)[];
5466
5466
  newLimitedStreamsIDs: string[];
5467
5467
  activeSounds: string[];
5468
5468
  screenShareIDStream: string;
5469
5469
  screenShareNameStream: string;
5470
5470
  adminIDStream: string;
5471
5471
  adminNameStream: string;
5472
- youYouStream: (Stream | Participant)[];
5472
+ youYouStream: (Participant | Stream)[];
5473
5473
  youYouStreamIDs: string[];
5474
5474
  localStream: MediaStream | null;
5475
5475
  recordStarted: boolean;
@@ -5511,15 +5511,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
5511
5511
  screenAlreadyOn: boolean;
5512
5512
  chatAlreadyOn: boolean;
5513
5513
  redirectURL: string;
5514
- oldAllStreams: (Stream | Participant)[];
5514
+ oldAllStreams: (Participant | Stream)[];
5515
5515
  adminVidID: string;
5516
5516
  streamNames: Stream[];
5517
5517
  non_alVideoStreams: Participant[];
5518
5518
  sortAudioLoudness: boolean;
5519
5519
  audioDecibels: AudioDecibels[];
5520
- mixed_alVideoStreams: (Stream | Participant)[];
5520
+ mixed_alVideoStreams: (Participant | Stream)[];
5521
5521
  non_alVideoStreams_muted: Participant[];
5522
- paginatedStreams: (Stream | Participant)[][];
5522
+ paginatedStreams: (Participant | Stream)[][];
5523
5523
  localStreamAudio: MediaStream | null;
5524
5524
  defAudioID: string;
5525
5525
  userDefaultAudioInputDevice: string;
@@ -5547,8 +5547,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
5547
5547
  prevDoPaginate: boolean;
5548
5548
  doPaginate: boolean;
5549
5549
  shareEnded: boolean;
5550
- lStreams: (Stream | Participant)[];
5551
- chatRefStreams: (Stream | Participant)[];
5550
+ lStreams: (Participant | Stream)[];
5551
+ chatRefStreams: (Participant | Stream)[];
5552
5552
  controlHeight: number;
5553
5553
  isWideScreen: boolean;
5554
5554
  isMediumScreen: boolean;
@@ -5560,11 +5560,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
5560
5560
  altGridRows: number;
5561
5561
  altGridCols: number;
5562
5562
  numberPages: number;
5563
- currentStreams: (Stream | Participant)[];
5563
+ currentStreams: (Participant | Stream)[];
5564
5564
  showMiniView: boolean;
5565
5565
  nStream: MediaStream | null;
5566
5566
  defer_receive: boolean;
5567
- allAudioStreams: (Stream | Participant)[];
5567
+ allAudioStreams: (Participant | Stream)[];
5568
5568
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
5569
5569
  remoteScreenStream: Stream[];
5570
5570
  gotAllVids: boolean;
@@ -6016,7 +6016,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6016
6016
  updateAnnotateScreenStream: (value: boolean) => void;
6017
6017
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
6018
6018
  updateIsScreenboardModalVisible: (value: boolean) => void;
6019
- checkOrientation: () => "portrait" | "landscape";
6019
+ checkOrientation: () => "landscape" | "portrait";
6020
6020
  updateDevice: (value: Device | null) => void;
6021
6021
  updateSocket: (value: Socket) => void;
6022
6022
  updateValidated: (value: boolean) => void;
@@ -6170,15 +6170,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6170
6170
  landScaped: boolean;
6171
6171
  lock_screen: boolean;
6172
6172
  screenId: string;
6173
- allVideoStreams: (Stream | Participant)[];
6174
- newLimitedStreams: (Stream | Participant)[];
6173
+ allVideoStreams: (Participant | Stream)[];
6174
+ newLimitedStreams: (Participant | Stream)[];
6175
6175
  newLimitedStreamsIDs: string[];
6176
6176
  activeSounds: string[];
6177
6177
  screenShareIDStream: string;
6178
6178
  screenShareNameStream: string;
6179
6179
  adminIDStream: string;
6180
6180
  adminNameStream: string;
6181
- youYouStream: (Stream | Participant)[];
6181
+ youYouStream: (Participant | Stream)[];
6182
6182
  youYouStreamIDs: string[];
6183
6183
  localStream: MediaStream | null;
6184
6184
  recordStarted: boolean;
@@ -6220,15 +6220,15 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6220
6220
  screenAlreadyOn: boolean;
6221
6221
  chatAlreadyOn: boolean;
6222
6222
  redirectURL: string;
6223
- oldAllStreams: (Stream | Participant)[];
6223
+ oldAllStreams: (Participant | Stream)[];
6224
6224
  adminVidID: string;
6225
6225
  streamNames: Stream[];
6226
6226
  non_alVideoStreams: Participant[];
6227
6227
  sortAudioLoudness: boolean;
6228
6228
  audioDecibels: AudioDecibels[];
6229
- mixed_alVideoStreams: (Stream | Participant)[];
6229
+ mixed_alVideoStreams: (Participant | Stream)[];
6230
6230
  non_alVideoStreams_muted: Participant[];
6231
- paginatedStreams: (Stream | Participant)[][];
6231
+ paginatedStreams: (Participant | Stream)[][];
6232
6232
  localStreamAudio: MediaStream | null;
6233
6233
  defAudioID: string;
6234
6234
  userDefaultAudioInputDevice: string;
@@ -6256,8 +6256,8 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6256
6256
  prevDoPaginate: boolean;
6257
6257
  doPaginate: boolean;
6258
6258
  shareEnded: boolean;
6259
- lStreams: (Stream | Participant)[];
6260
- chatRefStreams: (Stream | Participant)[];
6259
+ lStreams: (Participant | Stream)[];
6260
+ chatRefStreams: (Participant | Stream)[];
6261
6261
  controlHeight: number;
6262
6262
  isWideScreen: boolean;
6263
6263
  isMediumScreen: boolean;
@@ -6269,11 +6269,11 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6269
6269
  altGridRows: number;
6270
6270
  altGridCols: number;
6271
6271
  numberPages: number;
6272
- currentStreams: (Stream | Participant)[];
6272
+ currentStreams: (Participant | Stream)[];
6273
6273
  showMiniView: boolean;
6274
6274
  nStream: MediaStream | null;
6275
6275
  defer_receive: boolean;
6276
- allAudioStreams: (Stream | Participant)[];
6276
+ allAudioStreams: (Participant | Stream)[];
6277
6277
  screenProducer: Producer<import("mediasoup-client/lib/types").AppData> | null;
6278
6278
  remoteScreenStream: Stream[];
6279
6279
  gotAllVids: boolean;
@@ -6725,7 +6725,7 @@ export declare class MediasfuGeneric implements OnInit, OnDestroy {
6725
6725
  updateAnnotateScreenStream: (value: boolean) => void;
6726
6726
  updateMainScreenCanvas: (value: HTMLCanvasElement | null) => void;
6727
6727
  updateIsScreenboardModalVisible: (value: boolean) => void;
6728
- checkOrientation: () => "portrait" | "landscape";
6728
+ checkOrientation: () => "landscape" | "portrait";
6729
6729
  updateDevice: (value: Device | null) => void;
6730
6730
  updateSocket: (value: Socket) => void;
6731
6731
  updateValidated: (value: boolean) => void;