@chatui/core
Version:
The React library for Chatbot UI
9 lines (8 loc) • 309 B
TypeScript
import React from 'react';
export type ScrollViewEffect = 'slide' | 'fade' | '';
export type ScrollViewItemProps = {
item: any;
effect?: ScrollViewEffect;
onIntersect?: (item?: any, entry?: IntersectionObserverEntry) => boolean | void;
};
export declare const Item: React.FC<ScrollViewItemProps>;