mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-11 08:17:04 +00:00
16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
export const VoiceStateUpdateSchema = {
|
|
guild_id: String,
|
|
channel_id: String,
|
|
self_mute: Boolean,
|
|
self_deaf: Boolean,
|
|
self_video: Boolean,
|
|
};
|
|
|
|
export interface VoiceStateUpdateSchema {
|
|
guild_id: string;
|
|
channel_id: string;
|
|
self_mute: boolean;
|
|
self_deaf: boolean;
|
|
self_video: boolean;
|
|
}
|