stream-chat-react
Version:
React components to create chat conversations or livestream style chat
12 lines • 501 B
TypeScript
import React from 'react';
import type { LocalMessage } from 'stream-chat';
export type ThreadHeaderProps = {
/** Callback for closing the thread */
closeThread: (event?: React.BaseSyntheticEvent) => void;
/** The thread parent message */
thread: LocalMessage;
/** Override the thread display title */
overrideTitle?: string;
};
export declare const ThreadHeader: (props: ThreadHeaderProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ThreadHeader.d.ts.map