17 lines
187 B
TypeScript
17 lines
187 B
TypeScript
|
|
export type Sound = {
|
||
|
|
fileName: string;
|
||
|
|
name: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type VoiceChannelInfo = {
|
||
|
|
guildId: string;
|
||
|
|
guildName: string;
|
||
|
|
channelId: string;
|
||
|
|
channelName: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|