summary refs log tree commit diff
path: root/src/util/schemas/VoiceIdentifySchema.ts
blob: d48de3471a1c5e91c72ae60028adc1b5cae0ad86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface VoiceIdentifySchema {
	server_id: string;
	user_id: string;
	session_id: string;
	token: string;
	video?: boolean;
	streams?: {
		type: string;
		rid: string;
		quality: number;
	}[];
}