export interface ICreateWebrtcConnectionRequest { conversation_id: string; offer: IOffer; } export interface IOffer { type: string; sdp?: string; }