UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

13 lines 565 B
import type { PropsWithChildren } from 'react'; import type { LocalMessage } from 'stream-chat'; export type WindowProps = { /** optional prop to force addition of class str-chat__main-panel---with-thread-opn to the Window root element */ thread?: LocalMessage; }; declare const UnMemoizedWindow: (props: PropsWithChildren<WindowProps>) => import("react/jsx-runtime").JSX.Element; /** * A UI component for conditionally displaying a Thread or Channel */ export declare const Window: typeof UnMemoizedWindow; export {}; //# sourceMappingURL=Window.d.ts.map