summary refs log tree commit diff
path: root/src/util/schemas/responses/GuildVoiceRegionsResponse.ts
blob: 8190d5fd23ea740b9d7026b04fe29b15f5a11a84 (plain) (blame)
1
2
3
4
5
6
7
export interface GuildVoiceRegion {
	id: string;
	name: string;
	custom: boolean;
	deprecated: boolean;
	optimal: boolean;
}