Skip to content

Commit

Permalink
Export audio and video stats types (#1166)
Browse files Browse the repository at this point in the history
* Export audio and video stats types

* Create light-mayflies-live.md
  • Loading branch information
lukasIO authored Jun 19, 2024
1 parent 483e374 commit 88d2289
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/light-mayflies-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"livekit-client": patch
---

Export audio and video stats types
10 changes: 10 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ import LocalParticipant from './room/participant/LocalParticipant';
import Participant, { ConnectionQuality, ParticipantKind } from './room/participant/Participant';
import type { ParticipantTrackPermission } from './room/participant/ParticipantTrackPermission';
import RemoteParticipant from './room/participant/RemoteParticipant';
import type {
AudioReceiverStats,
AudioSenderStats,
VideoReceiverStats,
VideoSenderStats,
} from './room/stats';
import CriticalTimers from './room/timers';
import LocalAudioTrack from './room/track/LocalAudioTrack';
import LocalTrack from './room/track/LocalTrack';
Expand Down Expand Up @@ -89,4 +95,8 @@ export type {
ElementInfo,
LiveKitReactNativeInfo,
ParticipantTrackPermission,
AudioReceiverStats,
AudioSenderStats,
VideoReceiverStats,
VideoSenderStats,
};

0 comments on commit 88d2289

Please sign in to comment.