mediasfu-reactnative-expo
Version:
mediasfu-reactnative-expo – Expo-managed React Native WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms on iOS, Android, and web. Prebuilt r
10 lines (9 loc) • 454 B
TypeScript
import { AudioDecibels } from '../@types/types';
export interface UpdateParticipantAudioDecibelsOptions {
name: string;
averageLoudness: number;
audioDecibels: AudioDecibels[];
updateAudioDecibels: (audioDecibels: AudioDecibels[]) => void;
}
export type UpdateParticipantAudioDecibelsType = (options: UpdateParticipantAudioDecibelsOptions) => void;
export declare const updateParticipantAudioDecibels: UpdateParticipantAudioDecibelsType;