UNPKG

@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.

25 lines (24 loc) 1.97 kB
import React from "react"; import { IVeltCommentDialogComposerActionButtonProps } from "./VeltCommentDialogComposerActionButton/VeltCommentDialogComposerActionButton"; import { IVeltCommentDialogComposerAssignUserProps } from "./VeltCommentDialogComposerAssignUser/VeltCommentDialogComposerAssignUser"; import { IVeltCommentDialogComposerAttachments } from "./VeltCommentDialogComposerAttachments/VeltCommentDialogComposerAttachments"; import { IVeltCommentDialogComposerInputProps } from "./VeltCommentDialogComposerInput/VeltCommentDialogComposerInput"; import { IVeltCommentDialogComposerRecordingsProps } from "./VeltCommentDialogComposerRecordings/VeltCommentDialogComposerRecordings"; import { IVeltCommentDialogComposerPrivateBadgeProps } from "./VeltCommentDialogComposerPrivateBadge/VeltCommentDialogComposerPrivateBadge"; import { IVeltCommentDialogComposerAvatarProps } from "./VeltCommentDialogComposerAvatar/VeltCommentDialogComposerAvatar"; import { IVeltCommentDialogComposerFormatToolbar } from "./VeltCommentDialogComposerFormatToolbar/VeltCommentDialogComposerFormatToolbar"; import { IVeltWireframeCommonProps } from "../../../constants"; export interface IVeltCommentDialogComposerProps extends IVeltWireframeCommonProps { } export interface IVeltCommentDialogComposer extends React.FC<IVeltCommentDialogComposerProps> { ActionButton: React.FC<IVeltCommentDialogComposerActionButtonProps>; AssignUser: React.FC<IVeltCommentDialogComposerAssignUserProps>; Attachments: IVeltCommentDialogComposerAttachments; Input: React.FC<IVeltCommentDialogComposerInputProps>; Recordings: React.FC<IVeltCommentDialogComposerRecordingsProps>; PrivateBadge: React.FC<IVeltCommentDialogComposerPrivateBadgeProps>; Avatar: React.FC<IVeltCommentDialogComposerAvatarProps>; FormatToolbar: IVeltCommentDialogComposerFormatToolbar; } declare const VeltCommentDialogComposer: IVeltCommentDialogComposer; export default VeltCommentDialogComposer;