A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface SignallingMessageOptions

    Fields used to construct a SignallingMessage.

    interface SignallingMessageOptions {
        candidate?: string;
        description?: string;
        descriptionType?: "" | RTCSdpType;
        error?: Status;
        mid?: string;
        recipient?: string;
        sender?: string;
        type?: SignallingMessageType;
    }
    Index
    candidate?: string

    ICE candidate line for a candidate message.

    description?: string

    SDP text for a description message.

    descriptionType?: "" | RTCSdpType

    SDP description subtype, such as offer or answer.

    error?: Status

    Non-OK A11 status for an error message.

    mid?: string

    Media/data-channel id associated with an ICE candidate.

    recipient?: string

    Identity of the peer that should consume the message.

    sender?: string

    Identity of the peer that emitted the message.

    Control-message kind.