UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

14 lines (13 loc) 373 B
interface RecorderProps { /** * Whether to show the recordings for playback. */ showRecordings?: boolean; } /** * A component for recording audio. * Use this component to record audio. * This component uses AudioX library to record audio. */ export declare const Recorder: (props: RecorderProps) => import("react/jsx-runtime").JSX.Element; export {};