jukebox-vibe/web/src/types.ts

22 lines
257 B
TypeScript
Raw Normal View History

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