UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

15 lines (14 loc) 514 B
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;