UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

12 lines (11 loc) 289 B
import { IdType } from "../types"; export type FileAttachedParams = { id: IdType; file: File; actions: { setError: (e: string) => void; setProgress: (n: number) => void; setId: (newId: IdType) => void; onFinish: () => void; }; };