calling: add support for multiple ice server groups in GetIceServers

This commit is contained in:
adel-signal
2024-10-10 17:24:45 -07:00
committed by GitHub
parent 2818a3c8fc
commit f3aae86796
2 changed files with 39 additions and 15 deletions

View File

@@ -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>;