spacebar/src/util/schemas/VoiceIdentifySchema.ts
2022-09-26 22:41:21 +10:00

13 lines
203 B
TypeScript

export interface VoiceIdentifySchema {
server_id: string;
user_id: string;
session_id: string;
token: string;
video?: boolean;
streams?: {
type: string;
rid: string;
quality: number;
}[];
}