UNPKG

qaapio-reecord-mp3

Version:

A convenient and powerful React hook and component for audio recording with customizable options and audio levels.

7 lines (6 loc) 215 B
import React from 'react'; interface RecordAudioProps { setAudioFile: React.Dispatch<React.SetStateAction<File | undefined>>; } declare const RecordAudio: React.FC<RecordAudioProps>; export default RecordAudio;