@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
13 lines (12 loc) • 433 B
TypeScript
import React from "react";
import { CometChatTheme } from "../../../theme/type";
export interface CometChatMediaRecorderInterface {
onClose?: Function;
onPlay?: Function;
onPause?: Function;
onStop?: Function;
onSend?: Function;
onStart?: Function;
style?: CometChatTheme["mediaRecorderStyle"];
}
export declare const CometChatMediaRecorder: (props: CometChatMediaRecorderInterface) => React.JSX.Element;