feat: live-Volume während Wiedergabe (inlineVolume state) + Anzeige Gesamtanzahl Sounds

This commit is contained in:
vibe-bot 2025-08-08 01:40:49 +02:00
parent 826b07e994
commit 9a97a9d7bb
5 changed files with 28 additions and 8 deletions

View file

@ -3,6 +3,11 @@ export type Sound = {
name: string;
};
export type SoundsResponse = {
items: Sound[];
total: number;
};
export type VoiceChannelInfo = {
guildId: string;
guildName: string;