This commit is contained in:
2025-05-21 08:52:33 +03:00
parent e992d388fb
commit 4e5fca2402
68 changed files with 358 additions and 1398 deletions

View File

@@ -13,11 +13,7 @@ interface ChannelVoiceState {
interface ChannelsVoiceState {
channels: Record<ChannelId, ChannelVoiceState>;
addUser: (
channelId: ChannelId,
userId: UserId,
userVoiceState: UserVoiceState,
) => void;
addUser: (channelId: ChannelId, userId: UserId, userVoiceState: UserVoiceState) => void;
removeUser: (channelId: ChannelId, userId: UserId) => void;
removeChannel: (channelId: ChannelId) => void;
}