@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.
17 lines (16 loc) • 1.66 kB
TypeScript
import React from 'react';
import { IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerArrow/VeltCommentDialogCustomAnnotationDropdownTriggerArrow';
import { IVeltCommentDialogCustomAnnotationDropdownTriggerList } from './VeltCommentDialogCustomAnnotationDropdownTriggerList/VeltCommentDialogCustomAnnotationDropdownTriggerList';
import { IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount/VeltCommentDialogCustomAnnotationDropdownTriggerRemainingCount';
import { IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps } from './VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder/VeltCommentDialogCustomAnnotationDropdownTriggerPlaceholder';
import { IVeltWireframeCommonProps } from '../../../../constants';
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogCustomAnnotationDropdownTrigger extends React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerProps> {
Arrow: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerArrowProps>;
List: IVeltCommentDialogCustomAnnotationDropdownTriggerList;
RemainingCount: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerRemainingCountProps>;
Placeholder: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerPlaceholderProps>;
}
declare const VeltCommentDialogCustomAnnotationDropdownTrigger: IVeltCommentDialogCustomAnnotationDropdownTrigger;
export default VeltCommentDialogCustomAnnotationDropdownTrigger;