react-voice-recorder-player
Version:
Voice Recorder Component for React
9 lines (7 loc) • 352 B
TypeScript
import { UserPropsContextInterface } from '../../types';
declare function UserPropsProvider({ userPropsValue, children }: {
userPropsValue: UserPropsContextInterface;
children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
declare function useUserProps(): UserPropsContextInterface;
export { UserPropsProvider, useUserProps };