File size: 157 Bytes
d797791
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export interface ICreateWebrtcConnectionRequest {
  conversation_id: string;
  offer: IOffer;
}

export interface IOffer {
  type: string;
  sdp?: string;
}