@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) • 669 B
TypeScript
import React from 'react';
export interface IVeltCommentDialogAttachmentButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
annotationId?: string;
defaultCondition?: boolean;
inlineCommentSectionMode?: boolean;
template?: any;
componentMeta?: {
componentName: string;
variant?: string;
suffix?: string;
} | string;
allowedFileTypes?: string[] | string;
onClicked?: () => void;
onSelectFiles?: (files: any) => void;
}
declare const VeltCommentDialogAttachmentButton: React.FC<IVeltCommentDialogAttachmentButtonProps>;
export default VeltCommentDialogAttachmentButton;