blob: df023713f1f4e2b750f6728aedd3466de9255645 (
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;
}[];
}
|