export interface SetupDataChannelEvent {
    id: string;
    description: RTCSessionDescriptionInit;
}
export interface SetupDataChannelErrorEvent {
    status: {
        name: string;
        description: string;
    };
}
