@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.
13 lines (12 loc) • 714 B
TypeScript
import React from 'react';
import { IVeltCommentDialogMoreReplyCount } from './VeltCommentDialogMoreReplyCount/VeltCommentDialogMoreReplyCount';
import { IVeltCommentDialogMoreReplyText } from './VeltCommentDialogMoreReplyText/VeltCommentDialogMoreReplyText';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogMoreReplyProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogMoreReply extends React.FC<IVeltCommentDialogMoreReplyProps> {
Count: IVeltCommentDialogMoreReplyCount;
Text: IVeltCommentDialogMoreReplyText;
}
declare const VeltCommentDialogMoreReply: IVeltCommentDialogMoreReply;
export default VeltCommentDialogMoreReply;