Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/types/mediatypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {Subscribable} from './subscribable';
export interface MediaEntry {
/**
* Participant abstraction associated with this media entry.
* We expect participant to be set once.
* participant is immutable.
*/
readonly participant: Subscribable<Participant | undefined>;
/**
Expand Down Expand Up @@ -194,7 +194,7 @@ export interface PhoneUser {
*/
export interface MeetStreamTrack {
/**
* {@link https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack | WebRTC MediaStreamTrack}
* The {@link https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack | WebRTC MediaStreamTrack} interface of the Media Capture and Streams API represents a single audio or video media track within a stream.
*/
readonly mediaStreamTrack: MediaStreamTrack;
/**
Expand All @@ -219,7 +219,7 @@ export interface CanvasDimensions {
}

/**
* A Media layout for the Media Api Web client. This must be created by the
* A Media layout for the Media API Web client. This must be created by the
* Media API client to be valid. This is used to request a video stream.
*/
export interface MediaLayout {
Expand Down