saydata
Version:
Saydata seamlessly integrates AI-driven analytics for your customers into your app. Designed for beautiful visualization. Engineered for simplicity.
22 lines (21 loc) • 714 B
TypeScript
type ChatProps = {
email: string;
chatId: string;
connections: any;
chatDetails: any;
loadingDetails: boolean;
refetch: any;
addChat: any;
addingChat: boolean;
patchChat: any;
patchingChat: boolean;
dashboards: any;
updateDashboard: any;
updatingDashboard: boolean;
connection: any;
activeConnection: any;
refetchConnection: any;
dashboardId: string;
};
export default function Chats({ email, chatId, chatDetails, refetch, addChat, addingChat, patchChat, patchingChat, dashboards, updateDashboard, updatingDashboard, connection, activeConnection, refetchConnection, dashboardId, }: ChatProps): import("react/jsx-runtime").JSX.Element;
export {};