softchatjs-react
Version:
Install the softchat-js SDKs
13 lines (10 loc) • 330 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { CSSProperties } from 'react';
type AudioPlayerProps = {
blob: Blob;
url?: string;
duration: number;
style?: CSSProperties;
};
declare function AudioPlayer(props: AudioPlayerProps): react_jsx_runtime.JSX.Element;
export { AudioPlayer as default };