calling: add support for multiple ice server groups in GetIceServers
Co-authored-by: adel-signal <adel@signal.org>
This commit is contained in:
parent
80d7b0bf29
commit
9da1685dba
2 changed files with 39 additions and 15 deletions
|
@ -857,6 +857,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>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue