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

14 lines (13 loc) 434 B
import { ObservableReactValue } from '../utils/observers'; import { ThreadModel } from './ThreadModel'; export type ListGroupType = { label: string; timestamp: number; id: string; }; export declare class ThreadListGroupItem { readonly data: ListGroupType; threads: ObservableReactValue<ThreadModel<any, any>[]>; constructor(data: ListGroupType); checkList: (threads: ThreadModel[]) => void; }