interface VoipEvent {
    content: Record<string, unknown>;
    eventType: string;
    opponentDeviceId?: string;
    roomId?: string;
    type: "toDevice" | "sendEvent";
    userId?: string;
}

Properties

content: Record<string, unknown>
eventType: string
opponentDeviceId?: string
roomId?: string
type: "toDevice" | "sendEvent"
userId?: string

Generated using TypeDoc