jukebox-vibe/web/src/types.ts

26 lines
387 B
TypeScript
Raw Normal View History

2025-08-07 23:24:56 +02:00
export type Sound = {
fileName: string;
name: string;
folder?: string;
relativePath?: string;
isRecent?: boolean;
2025-08-07 23:24:56 +02:00
};
export type SoundsResponse = {
items: Sound[];
total: number;
folders: Array<{ key: string; name: string; count: number }>;
};
2025-08-07 23:24:56 +02:00
export type VoiceChannelInfo = {
guildId: string;
guildName: string;
channelId: string;
channelName: string;
};