chat-frontend-library
Version:
``` npm install chat-frontend-library --save ```
15 lines (14 loc) • 514 B
TypeScript
import React, { FC } from "react";
import { IChatInformation } from "@api/chatApi";
import "./ExtendedChatHeader.scss";
interface ExtendedChatHeaderProps {
setIsActiveEdit: React.Dispatch<React.SetStateAction<boolean>>;
isActiveEdit: boolean;
selectedMessages: number;
cbHandleCloseChat?: () => void;
isOnlyChat?: boolean;
chatInformation?: IChatInformation;
isOnlineOpponent: boolean;
}
declare const ExtendedChatHeader: FC<ExtendedChatHeaderProps>;
export default ExtendedChatHeader;