mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-03 14:51:18 +01:00
calling: add support for multiple ice server groups in GetIceServers
This commit is contained in:
@@ -861,6 +861,15 @@ export type GetAccountForUsernameResultType = z.infer<
|
||||
>;
|
||||
|
||||
export type GetIceServersResultType = Readonly<{
|
||||
username?: string;
|
||||
password?: string;
|
||||
urls?: ReadonlyArray<string>;
|
||||
urlsWithIps?: ReadonlyArray<string>;
|
||||
hostname?: string;
|
||||
iceServers?: ReadonlyArray<IceServerGroupType>;
|
||||
}>;
|
||||
|
||||
export type IceServerGroupType = Readonly<{
|
||||
username: string;
|
||||
password: string;
|
||||
urls?: ReadonlyArray<string>;
|
||||
|
||||
Reference in New Issue
Block a user