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

12 lines
202 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;
}[];
}