react-voice-recorder-player
Version:
Voice Recorder Component for React
11 lines (9 loc) • 332 B
TypeScript
import { AudioContextInterface } from '../../types';
/**
* 😣 should clean up the data structure in this context
*/
declare function AudioProvider({ children }: {
children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
declare function useAudio(): AudioContextInterface;
export { AudioProvider, useAudio };