@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.
27 lines (26 loc) • 889 B
TypeScript
import React from 'react';
export interface IVeltCommentDialogComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
annotationId?: string;
defaultCondition?: boolean;
inlineCommentSectionMode?: boolean;
editMode?: boolean;
commentObj?: any | string;
commentIndex?: number | string;
composerWireframe?: any;
placeholder?: string;
commentplaceholder?: string;
replyplaceholder?: string;
editplaceholder?: string;
editcommentplaceholder?: string;
editreplyplaceholder?: string;
targetElementId?: string;
targetComposerElementId?: string;
documentId?: string;
locationId?: string;
folderId?: string;
context?: {
[key: string]: any;
};
}
declare const VeltCommentDialogComposer: React.FC<IVeltCommentDialogComposerProps>;
export default VeltCommentDialogComposer;