swc/crates/swc_bundler/tests/.cache/deno/55bfaab530cc00f2f3c442149339cc329e5b4653.ts
2021-11-09 20:42:49 +09:00

13 lines
393 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/voice/voice_server_update.ts
/** https://discord.com/developers/docs/topics/gateway#voice-server-update */
export interface VoiceServerUpdate {
/** Voice connection token */
token: string;
/** The guild this voice server update is for */
guildId: string;
/** The voice server host */
endpoint: string | null;
}