Skip to content

Commit

Permalink
update api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO committed Nov 21, 2024
1 parent ed616f8 commit 3b5263d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/etc/components-core.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function connectedParticipantsObserver(room: Room, options?: ConnectedPar
export function connectionStateObserver(room: Room): Observable<ConnectionState>;

// @public (undocumented)
export function createActiveDeviceObservable(room: Room, kind: MediaDeviceKind): Observable<string | undefined>;
export function createActiveDeviceObservable(room: Room, kind: MediaDeviceKind): Observable<string>;

// @public (undocumented)
export function createChatObserver(room: Room): Observable<[message: ChatMessage, participant?: LocalParticipant | RemoteParticipant | undefined]>;
Expand Down
3 changes: 2 additions & 1 deletion packages/react/etc/components-react.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { ConnectionQuality } from 'livekit-client';
import { ConnectionState as ConnectionState_2 } from 'livekit-client';
import { CreateLocalTracksOptions } from 'livekit-client';
import { DataPublishOptions } from 'livekit-client';
import { DisconnectReason } from 'livekit-client';
import { HTMLAttributes } from 'react';
import { LocalAudioTrack } from 'livekit-client';
import { LocalParticipant } from 'livekit-client';
Expand Down Expand Up @@ -368,7 +369,7 @@ export interface LiveKitRoomProps extends Omit<React_2.HTMLAttributes<HTMLDivEle
// (undocumented)
onConnected?: () => void;
// (undocumented)
onDisconnected?: () => void;
onDisconnected?: (reason?: DisconnectReason) => void;
// (undocumented)
onEncryptionError?: (error: Error) => void;
// (undocumented)
Expand Down

0 comments on commit 3b5263d

Please sign in to comment.