react-live-chat-loader
Version:
Implement live chat in your react app without taking a performance hit.
15 lines (14 loc) • 434 B
TypeScript
import { ProviderProps } from '../../types';
interface Props extends ProviderProps {
themeColor?: string;
loggedInGreeting?: string;
loggedOutGreeting?: string;
show?: string;
hide?: string;
fade?: string;
greetingDialogDelay?: string;
greetingDialogDisplay?: string;
color?: string;
}
declare const Messenger: ({ color, containerClass, ...props }: Props) => JSX.Element;
export default Messenger;