blob: c17e2f5d4da6d915ad9bf50ee9629739ed1c563b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export interface GuildVoiceRegion {
id: string;
name: string;
custom: boolean;
deprecated: boolean;
optimal: boolean;
}
export type GuildVoiceRegionsResponse = GuildVoiceRegion[];
|