UNPKG

@xapp/chat-widget

Version:
12 lines (11 loc) 379 B
import 'rollup-plugin-inject-process-env'; import { ChatUserInfo } from "@xapp/stentor-chat-widget"; import { FC } from "react"; export interface Props { readonly agent: ChatUserInfo; readonly hasRating: boolean; readonly shouldDisplay: boolean; onRate(rating: "bad" | "good" | undefined): void; } declare const ChatRating: FC<Props>; export default ChatRating;