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

RTCRtpTransceiver

interface RTCRtpTransceiver {
readonly currentDirection: RTCRtpTransceiverDirection | null;
readonly mid: string | null;
readonly receiver: RTCRtpReceiver;
readonly sender: RTCRtpSender;
setCodecPreferences(codecs: RTCRtpCodecCapability[]): void;
setCodecPreferences(codecs: Iterable<RTCRtpCodecCapability>): void;
stop(): void;
}
var RTCRtpTransceiver: {
prototype: RTCRtpTransceiver;
}
;

§Properties

§
readonly currentDirection: RTCRtpTransceiverDirection | null
[src]
§
readonly mid: string | null
[src]
§
readonly receiver: RTCRtpReceiver
[src]
§
readonly sender: RTCRtpSender
[src]

§Methods

§
setCodecPreferences(codecs: RTCRtpCodecCapability[]): void
[src]
§
setCodecPreferences(codecs: Iterable<RTCRtpCodecCapability>): void
[src]
§
stop(): void
[src]