@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.
15 lines (14 loc) • 1.28 kB
TypeScript
import React from 'react';
import { IVeltCommentDialogThreadCardAttachmentsImagePreviewProps } from './VeltCommentDialogThreadCardAttachmentsImagePreview/VeltCommentDialogThreadCardAttachmentsImagePreview';
import { IVeltCommentDialogThreadCardAttachmentsImageDeleteProps } from './VeltCommentDialogThreadCardAttachmentsImageDelete/VeltCommentDialogThreadCardAttachmentsImageDelete';
import { IVeltCommentDialogThreadCardAttachmentsImageDownloadProps } from './VeltCommentDialogThreadCardAttachmentsImageDownload/VeltCommentDialogThreadCardAttachmentsImageDownload';
import { IVeltWireframeCommonProps } from '../../../../../constants';
export interface IVeltCommentDialogThreadCardAttachmentsImageProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogThreadCardAttachmentsImage extends React.FC<IVeltCommentDialogThreadCardAttachmentsImageProps> {
Preview: React.FC<IVeltCommentDialogThreadCardAttachmentsImagePreviewProps>;
Delete: React.FC<IVeltCommentDialogThreadCardAttachmentsImageDeleteProps>;
Download: React.FC<IVeltCommentDialogThreadCardAttachmentsImageDownloadProps>;
}
declare const VeltCommentDialogThreadCardAttachmentsImage: IVeltCommentDialogThreadCardAttachmentsImage;
export default VeltCommentDialogThreadCardAttachmentsImage;