saydata
Version:
Saydata seamlessly integrates AI-driven analytics for your customers into your app. Designed for beautiful visualization. Engineered for simplicity.
18 lines (17 loc) • 335 B
TypeScript
import { ChatItem } from "./Chat";
export interface Item {
chatItem: ChatItem;
chatId?: string;
x?: number;
y?: number;
width?: number;
height?: number;
type: string;
}
export interface DashboardBlock {
id?: string;
title?: string;
description?: string;
items: Item[];
email?: string;
}