@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.
20 lines (19 loc) • 679 B
TypeScript
import React from 'react';
export interface IVeltMultiThreadCommentDialogProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
annotationId?: string;
multiThreadAnnotationId?: string;
annotation?: any;
user?: any;
commentPinSelected?: boolean;
commentPinType?: string;
dialogVariant?: string;
variant?: string;
inboxMode?: boolean;
containerComponentId?: string;
context?: any;
readOnly?: boolean;
defaultCondition?: boolean;
onSaveComment?: Function;
}
declare const VeltMultiThreadCommentDialog: React.FC<IVeltMultiThreadCommentDialogProps>;
export default VeltMultiThreadCommentDialog;