react-jwchat
Version:
This is an easy-to-use web chat component, based on react.
16 lines (15 loc) • 359 B
TypeScript
import { IChatProps } from "../../types";
declare function Chat(props: IChatProps): JSX.Element;
declare namespace Chat {
var defaultProps: {
style: {
width: number;
height: number;
};
contact: {};
me: {};
chatList: never[];
onSend: (msg: any) => void;
};
}
export default Chat;