|
|
|
@ -40,7 +40,20 @@ import { IInviteState } from '../invite/reducer'; |
|
|
|
|
import { IJaaSState } from '../jaas/reducer'; |
|
|
|
|
import { ILargeVideoState } from '../large-video/reducer'; |
|
|
|
|
import { ILobbyState } from '../lobby/reducer'; |
|
|
|
|
import { IMobileAudioModeState } from '../mobile/audio-mode/reducer'; |
|
|
|
|
import { IBackgroundState } from '../mobile/background/reducer'; |
|
|
|
|
import { IMobileExternalApiState } from '../mobile/external-api/reducer'; |
|
|
|
|
import { IFullScreenState } from '../mobile/full-screen/reducer'; |
|
|
|
|
import { IMobileWatchOSState } from '../mobile/watchos/reducer'; |
|
|
|
|
import { INoAudioSignalState } from '../no-audio-signal/reducer'; |
|
|
|
|
import { INoiseDetectionState } from '../noise-detection/reducer'; |
|
|
|
|
import { INoiseSuppressionState } from '../noise-suppression/reducer'; |
|
|
|
|
import { INotificationsState } from '../notifications/reducer'; |
|
|
|
|
import { IOverlayState } from '../overlay/reducer'; |
|
|
|
|
import { IPollsState } from '../polls/reducer'; |
|
|
|
|
import { IPowerMonitorState } from '../power-monitor/reducer'; |
|
|
|
|
import { IPrejoinState } from '../prejoin/reducer'; |
|
|
|
|
import { IReactionsState } from '../reactions/reducer'; |
|
|
|
|
|
|
|
|
|
export interface IStore { |
|
|
|
|
dispatch: Function, |
|
|
|
@ -51,6 +64,7 @@ export interface IState { |
|
|
|
|
'features/analytics': IAnalyticsState, |
|
|
|
|
'features/authentication': IAuthenticationState, |
|
|
|
|
'features/av-moderation': IAVModerationState, |
|
|
|
|
'features/background': IBackgroundState, |
|
|
|
|
'features/base/app': IAppState, |
|
|
|
|
'features/base/audio-only': IAudioOnlyState, |
|
|
|
|
'features/base/conference': IConferenceState, |
|
|
|
@ -85,12 +99,25 @@ export interface IState { |
|
|
|
|
'features/feedback': IFeedbackState, |
|
|
|
|
'features/filmstrip': IFilmstripState, |
|
|
|
|
'features/follow-me': IFollowMeState, |
|
|
|
|
'features/full-screen': IFullScreenState, |
|
|
|
|
'features/gifs': IGifsState, |
|
|
|
|
'features/google-api': IGoogleApiState, |
|
|
|
|
'features/invite': IInviteState, |
|
|
|
|
'features/jaas': IJaaSState, |
|
|
|
|
'features/large-video': ILargeVideoState, |
|
|
|
|
'features/lobby': ILobbyState, |
|
|
|
|
'features/mobile/audio-mode': IMobileAudioModeState, |
|
|
|
|
'features/mobile/external-api': IMobileExternalApiState, |
|
|
|
|
'features/mobile/watchos': IMobileWatchOSState, |
|
|
|
|
'features/no-audio-signal': INoAudioSignalState, |
|
|
|
|
'features/noise-detection': INoiseDetectionState, |
|
|
|
|
'features/noise-suppression': INoiseSuppressionState, |
|
|
|
|
'features/notifications': INotificationsState, |
|
|
|
|
'features/overlay': IOverlayState, |
|
|
|
|
'features/participants-pane': IParticipantsState, |
|
|
|
|
'features/polls': IPollsState, |
|
|
|
|
'features/power-monitor': IPowerMonitorState, |
|
|
|
|
'features/prejoin': IPrejoinState, |
|
|
|
|
'features/reactions': IReactionsState, |
|
|
|
|
'features/testing': ITestingState |
|
|
|
|
} |
|
|
|
|