UNPKG

@veltdev/react

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

18 lines (17 loc) 613 B
import React from 'react'; export interface IVeltCommentsSidebarV2Props extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> { pageMode?: boolean; focusedThreadMode?: boolean; readOnly?: boolean; embedMode?: string; floatingMode?: boolean; position?: string; variant?: string; forceClose?: boolean; onSidebarOpen?: Function; onSidebarClose?: Function; onCommentClick?: Function; onCommentNavigationButtonClick?: Function; } declare const VeltCommentsSidebarV2: React.FC<IVeltCommentsSidebarV2Props>; export default VeltCommentsSidebarV2;