UNPKG

react-audio-light

Version:

Lightweight React Audio hooks library for Recording and Playing Audio based on MediaStream Recording API

8 lines (7 loc) 193 B
export default useAudioRecorder; declare function useAudioRecorder(): { isRecording: boolean; audioBlob: any; startRecording: () => Promise<void>; stopRecording: () => void; };