UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

9 lines (8 loc) 406 B
export type AutoScrollController = { updateProps: ({autoScroll}: {autoScroll: boolean}) => void; updateConversationContainer: (container: HTMLElement) => void; handleNewChatSegmentAdded: (segmentId: string, segmentContainer: HTMLElement) => void; handleChatSegmentComplete: (segmentId: string) => void; handleChatSegmentRemoved: (segmentId: string) => void; destroy: () => void; };