UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

9 lines (8 loc) 328 B
import React from 'react'; export type AudioRecordingPlayerProps = { durationSeconds: number; mimeType?: string; src?: string; waveformData?: number[]; }; export declare const AudioRecordingPreview: ({ durationSeconds, mimeType, src, waveformData, }: AudioRecordingPlayerProps) => React.JSX.Element | undefined;