@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
13 lines (12 loc) • 551 B
TypeScript
import { Localization } from '../locale/Localization';
import { ThreadModel } from './ThreadModel';
import { ObservableReactValue } from '../utils/observers';
import { ThreadListGroupItem } from './ThreadListGroupItem';
export declare class ThreadListCache {
groupValues: ObservableReactValue<Record<string, ThreadListGroupItem>>;
readonly menuConfig: ObservableReactValue<{
anchorEl: null | HTMLElement;
thread: ThreadModel;
} | undefined>;
audit: (locale: Localization, threads: ThreadModel[]) => void;
}