Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RTCSessionDescription

One end of a connection—or potential connection—and how it's configured. Each RTCSessionDescription consists of a description type indicating which part of the offer/answer negotiation process it describes and of the SDP descriptor of the session.

interface RTCSessionDescription {
readonly sdp: string;
readonly type: RTCSdpType;
toJSON(): any;
}
var RTCSessionDescription: {
new (descriptionInitDict: RTCSessionDescriptionInit): RTCSessionDescription;
}
;

§Properties

§
readonly sdp: string
[src]
§
readonly type: RTCSdpType
[src]

§Methods

§
toJSON(): any
[src]