We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49762fe commit 39dfab6Copy full SHA for 39dfab6
src/frontend/src/stores/channelAction.ts
@@ -6,10 +6,10 @@ interface ChannelActionState {
6
isSharingScreen: boolean;
7
isVideoOn: boolean;
8
isMicOn: boolean;
9
- setIsInVoiceChannel: () => void;
10
- setIsSharingScreen: () => void;
11
- setIsVideoOn: () => void;
12
- setIsMicOn: () => void;
+ setIsInVoiceChannel: (value: boolean) => void;
+ setIsSharingScreen: (value: boolean) => void;
+ setIsVideoOn: (value: boolean) => void;
+ setIsMicOn: (value: boolean) => void;
13
}
14
15
export const useChannelActionStore = create<ChannelActionState>()(
0 commit comments