UNPKG

@100mslive/react-native-room-kit

Version:

100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.

10 lines 525 B
import React from 'react'; import { HMSLocalAudioStats, HMSRemoteAudioStats, HMSRemoteVideoStats, HMSLocalVideoStats } from '@100mslive/react-native-hms'; type TrackStats = HMSLocalAudioStats | HMSRemoteAudioStats | HMSRemoteVideoStats | HMSLocalVideoStats[] | null | undefined; interface PeerRTCStatsViewProps { audioTrackStats: TrackStats; videoTrackStats: TrackStats; } declare const PeerRTCStatsView: React.FC<PeerRTCStatsViewProps>; export default PeerRTCStatsView; //# sourceMappingURL=PeerRTCStatsView.d.ts.map