UNPKG

@phenixrts/sdk

Version:
13 lines (12 loc) 336 B
export type AddIceCandidatesStatus = 'ok'; export interface IAddIceCandidatesRequest { apiVersion: number; sharedSecret: string; candidates: RTCIceCandidate[]; discoveryCompleted: boolean; options: string[]; } export interface IAddIceCandidatesResponse { status: AddIceCandidatesStatus; options: string[]; }