jukebox-vibe/web/src/types.ts

17 lines
187 B
TypeScript
Raw Normal View History

2025-08-07 23:24:56 +02:00
export type Sound = {
fileName: string;
name: string;
};
export type VoiceChannelInfo = {
guildId: string;
guildName: string;
channelId: string;
channelName: string;
};