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

MediaStreamTrackEvent

Events which indicate that a MediaStream has had tracks added to or removed from the stream through calls to Media Stream API methods. These events are sent to the stream when these changes occur.

interface MediaStreamTrackEvent extends Event {
readonly track: MediaStreamTrack;
}
var MediaStreamTrackEvent: {
new (type: string, eventInitDict: MediaStreamTrackEventInit): MediaStreamTrackEvent;
}
;

§Extends

§Properties

§
readonly track: MediaStreamTrack
[src]