UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

12 lines 587 B
import { SynapseChatProps } from './SynapseChat'; export type SynapsePortalChatDialogProps = SynapseChatProps & { open: boolean; onClose: () => void; }; /** * A dialog that wraps SynapseChat with externally-controlled open/close state. * Only shown when the user is logged in and the PORTAL_CHAT feature flag is enabled. */ export declare function SynapsePortalChatDialog({ open, onClose, ...chatDialogProps }: SynapsePortalChatDialogProps): import("react/jsx-runtime").JSX.Element; export default SynapsePortalChatDialog; //# sourceMappingURL=SynapsePortalChatDialog.d.ts.map