@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) • 1.13 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltCommentDialogVisibilityDropdownContentPublicWireframeProps } from './VeltCommentDialogVisibilityDropdownContentPublicWireframe/VeltCommentDialogVisibilityDropdownContentPublicWireframe';
import { IVeltCommentDialogVisibilityDropdownContentPrivateWireframeProps } from './VeltCommentDialogVisibilityDropdownContentPrivateWireframe/VeltCommentDialogVisibilityDropdownContentPrivateWireframe';
export interface IVeltCommentDialogVisibilityDropdownContentWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogVisibilityDropdownContentWireframe extends React.FC<IVeltCommentDialogVisibilityDropdownContentWireframeProps> {
Public: React.FC<IVeltCommentDialogVisibilityDropdownContentPublicWireframeProps>;
Private: React.FC<IVeltCommentDialogVisibilityDropdownContentPrivateWireframeProps>;
}
declare const VeltCommentDialogVisibilityDropdownContentWireframe: IVeltCommentDialogVisibilityDropdownContentWireframe;
export default VeltCommentDialogVisibilityDropdownContentWireframe;