feat: implement local audio streaming with controls in voice components

This commit is contained in:
MythEclipse
2026-05-16 21:08:39 +07:00
parent 82025a19b2
commit 62d131cf14
5 changed files with 95 additions and 5 deletions
@@ -14,11 +14,13 @@ interface VoicePanelProps {
activeSpeakers: ActiveSpeaker[];
levels: number[];
isListening: boolean;
isStreaming: boolean;
onGuildChange: (guildId: string) => void;
onChannelChange: (channelId: string) => void;
onJoin: () => void;
onDisconnect: () => void;
onListenToggle: () => void;
onStreamingToggle: () => void;
}
export function VoicePanel(props: VoicePanelProps) {