Skip to content

Commit 1ab7a75

Browse files
koumiGooglecopybara-github
authored andcommitted
fix: Add dev site links
PiperOrigin-RevId: 723658616
1 parent 37d15ad commit 1ab7a75

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

web/types/mediatypes.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,18 +234,18 @@ export interface MediaLayout {
234234
}
235235

236236
/**
237-
* A request for a {@link MediaLayout}. This is required to be able to request a video
237+
* A request for a {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.medialayout | MediaLayout}. This is required to be able to request a video
238238
* stream.
239239
*/
240240
export interface MediaLayoutRequest {
241241
/**
242-
* The {@link MediaLayout} to request.
242+
* The {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.medialayout | MediaLayout} to request.
243243
*/
244244
mediaLayout: MediaLayout;
245245
}
246246

247247
/**
248-
* Required configuration for the {@link MeetMediaApiClient}.
248+
* Required configuration for the {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.meetmediaapiclient | MeetMediaApiClient}.
249249
*/
250250
export interface MeetMediaClientRequiredConfiguration {
251251
/**

web/types/meetmediaapiclient.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {Subscribable} from './subscribable';
3434
/**
3535
* Interface for the MeetMediaApiClient. Takes a required configuration
3636
* and provides a set of subscribables to the client.
37-
* Takes a {@link MeetMediaClientRequiredConfiguration} as a constructor
37+
* Takes a {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.meetmediaclientrequiredconfiguration | MeetMediaClientRequiredConfiguration} as a constructor
3838
* parameter.
3939
*/
4040
export interface MeetMediaApiClient {
@@ -69,7 +69,7 @@ export interface MeetMediaApiClient {
6969
/**
7070
* Joins the meeting.
7171
* @param communicationProtocol The communication protocol to use. If not
72-
* provided, a default {@link MediaApiCommunicationProtocol} will be used.
72+
* provided, a default {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.mediaapicommunicationprotocol | MediaApiCommunicationProtocol} will be used.
7373
*/
7474
joinMeeting(
7575
communicationProtocol?: MediaApiCommunicationProtocol,
@@ -83,7 +83,7 @@ export interface MeetMediaApiClient {
8383
/**
8484
* Applies the given media layout requests. This is required to be able to
8585
* request a video stream. Only accepts media layouts that have been
86-
* created with the {@link createMediaLayout} function.
86+
* created with the {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.meetmediaapiclient.createmedialayout | createMediaLayout} function.
8787
* @param requests The requests to apply.
8888
* @return A promise that resolves when the request has been accepted. NOTE:
8989
* The promise resolving on the request does not mean the layout has been
@@ -94,9 +94,9 @@ export interface MeetMediaApiClient {
9494

9595
/**
9696
* Creates a new media layout. Only media layouts that are created with this
97-
* function can be applied. Otherwise, the {@link applyLayout} function will
97+
* function can be applied. Otherwise, the {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.meetmediaapiclient.applylayout.md | applyLayout} function will
9898
* throw an error. Once the media layout has been created, you can construct a
99-
* request and apply it with the {@link applyLayout} function. These media
99+
* request and apply it with the {@link https://developers.google.com/meet/media-api/reference/web/media_api_web.meetmediaapiclient.applylayout.md | applyLayout} function. These media
100100
* layout objects are meant to be reused (can be reassigned to a different
101101
* request) but are distinct per stream (need to be created for each stream).
102102
* @param canvasDimensions The dimensions of the canvas to render the layout

0 commit comments

Comments
 (0)