@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.
19 lines (18 loc) • 1.89 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentDialogOptionsDropdownContentAssignWireframeProps } from './VeltCommentDialogOptionsDropdownContentAssignWireframe/VeltCommentDialogOptionsDropdownContentAssignWireframe';
import { IVeltCommentDialogOptionsDropdownContentDeleteWireframe } from './VeltCommentDialogOptionsDropdownContentDeleteWireframe/VeltCommentDialogOptionsDropdownContentDeleteWireframe';
import { IVeltCommentDialogOptionsDropdownContentEditWireframeProps } from './VeltCommentDialogOptionsDropdownContentEditWireframe/VeltCommentDialogOptionsDropdownContentEditWireframe';
import { IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe } from './VeltCommentDialogOptionsDropdownContentMakePrivateWireframe/VeltCommentDialogOptionsDropdownContentMakePrivateWireframe';
import { IVeltCommentDialogOptionsDropdownContentNotificationWireframe } from './VeltCommentDialogOptionsDropdownContentNotificationWireframe/VeltCommentDialogOptionsDropdownContentNotificationWireframe';
export interface IVeltCommentDialogOptionsDropdownContentWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogOptionsDropdownContentWireframe extends React.FC<IVeltCommentDialogOptionsDropdownContentWireframeProps> {
Assign: React.FC<IVeltCommentDialogOptionsDropdownContentAssignWireframeProps>;
MakePrivate: IVeltCommentDialogOptionsDropdownContentMakePrivateWireframe;
Delete: IVeltCommentDialogOptionsDropdownContentDeleteWireframe;
Edit: React.FC<IVeltCommentDialogOptionsDropdownContentEditWireframeProps>;
Notification: IVeltCommentDialogOptionsDropdownContentNotificationWireframe;
}
declare const VeltCommentDialogOptionsDropdownContentWireframe: IVeltCommentDialogOptionsDropdownContentWireframe;
export default VeltCommentDialogOptionsDropdownContentWireframe;