deep-chat-dev
Version:
Customizable chat component for AI APIs
14 lines • 415 B
TypeScript
import { StatefulStyles } from './styles';
export interface ScrollButton {
styles?: StatefulStyles;
smoothScroll?: boolean;
scrollDelta?: number;
content?: string;
}
export interface HiddenMessages {
styles?: StatefulStyles;
smoothScroll?: boolean;
clickScroll?: 'first' | 'last';
onUpdate?: (content: string, number: number) => string;
}
//# sourceMappingURL=scrollToBottom.d.ts.map