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

8 lines (7 loc) 285 B
import type { ChatSpeed } from './useChatProps'; export type ResolvedSpeed = { typing: number; stagger: number; }; export declare const resolveSpeed: (speed?: ChatSpeed, typingSpeed?: number) => ResolvedSpeed; export declare const useResolvedSpeed: () => ResolvedSpeed;