-
Notifications
You must be signed in to change notification settings - Fork 181
Add script to check that the tsdoc is correct and up-to-date #3644
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -138,7 +138,16 @@ interface Props { | |
| * We want | ||
| * - a publisher | ||
| * - | ||
| * @param param0 | ||
| * @param props The properties required to create the local membership. | ||
| * @param props.scope The observable scope to use. | ||
| * @param props.connectionManager The connection manager to get connections from. | ||
| * @param props.createPublisherFactory Factory to create a publisher once we have a connection. | ||
| * @param props.joinMatrixRTC Callback to join the matrix RTC session once we have a transport. | ||
| * @param props.homeserverConnected The homeserver connected state. | ||
| * @param props.localTransport$ The local transport to use for publishing. | ||
| * @param props.logger The logger to use. | ||
| * @param props.muteStates The mute states for video and audio. | ||
| * @param props.matrixRTCSession The matrix RTC session to join. | ||
|
Comment on lines
+141
to
+150
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For what it's worth I think we should stick to putting these kinds of comments in the
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes it feels a bit strange to me also, but I am not familiar with js doc. |
||
| * @returns | ||
| * - publisher: The handle to create tracks and publish them to the room. | ||
| * - connected$: the current connection state. Including matrix server and livekit server connection. (only considering the livekit server we are using for our own media publication) | ||
|
|
@@ -676,9 +685,11 @@ interface EnterRTCSessionOptions { | |
| * - Delay events management | ||
| * - Handles retries (fails only after several attempts) | ||
| * | ||
| * @param rtcSession | ||
| * @param transport | ||
| * @param options | ||
| * @param rtcSession - The MatrixRTCSession to join. | ||
| * @param transport - The LivekitTransport to use for this session. | ||
| * @param options - Options for entering the RTC session. | ||
| * @param options.encryptMedia - Whether to encrypt media. | ||
| * @param options.matrixRTCMode - The Matrix RTC mode to use. | ||
| * @throws If the widget could not send ElementWidgetActions.JoinCall action. | ||
| */ | ||
| // Exported for unit testing | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.