@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) • 2.24 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltSingleEditorModePanelAcceptRequestWireframe } from './VeltSingleEditorModePanelAcceptRequestWireframe/VeltSingleEditorModePanelAcceptRequestWireframe';
import { IVeltSingleEditorModePanelCancelRequestWireframe } from './VeltSingleEditorModePanelCancelRequestWireframe/VeltSingleEditorModePanelCancelRequestWireframe';
import { IVeltSingleEditorModePanelCountdownWireframe } from './VeltSingleEditorModePanelCountdownWireframe/VeltSingleEditorModePanelCountdownWireframe';
import { IVeltSingleEditorModePanelEditHereWireframe } from './VeltSingleEditorModePanelEditHereWireframe/VeltSingleEditorModePanelEditHereWireframe';
import { IVeltSingleEditorModePanelEditorTextWireframe } from './VeltSingleEditorModePanelEditorTextWireframe/VeltSingleEditorModePanelEditorTextWireframe';
import { IVeltSingleEditorModePanelRejectRequestWireframe } from './VeltSingleEditorModePanelRejectRequestWireframe/VeltSingleEditorModePanelRejectRequestWireframe';
import { IVeltSingleEditorModePanelRequestAccessWireframe } from './VeltSingleEditorModePanelRequestAccessWireframe/VeltSingleEditorModePanelRequestAccessWireframe';
import { IVeltSingleEditorModePanelViewerTextWireframe } from './VeltSingleEditorModePanelViewerTextWireframe/VeltSingleEditorModePanelViewerTextWireframe';
export interface IVeltSingleEditorModePanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltSingleEditorModePanelWireframe extends React.FC<IVeltSingleEditorModePanelWireframeProps> {
RequestAccess: IVeltSingleEditorModePanelRequestAccessWireframe;
RejectRequest: IVeltSingleEditorModePanelRejectRequestWireframe;
ViewerText: IVeltSingleEditorModePanelViewerTextWireframe;
EditorText: IVeltSingleEditorModePanelEditorTextWireframe;
EditHere: IVeltSingleEditorModePanelEditHereWireframe;
Countdown: IVeltSingleEditorModePanelCountdownWireframe;
CancelRequest: IVeltSingleEditorModePanelCancelRequestWireframe;
AcceptRequest: IVeltSingleEditorModePanelAcceptRequestWireframe;
}
declare const VeltSingleEditorModePanelWireframe: IVeltSingleEditorModePanelWireframe;
export default VeltSingleEditorModePanelWireframe;