@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.
15 lines (14 loc) • 992 B
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltRecorderAllToolMenuAudioWireframe } from './VeltRecorderAllToolMenuAudioWireframe/VeltRecorderAllToolMenuAudioWireframe';
import { IVeltRecorderAllToolMenuVideoWireframe } from './VeltRecorderAllToolMenuVideoWireframe/VeltRecorderAllToolMenuVideoWireframe';
import { IVeltRecorderAllToolMenuScreenWireframe } from './VeltRecorderAllToolMenuScreenWireframe/VeltRecorderAllToolMenuScreenWireframe';
export interface IVeltRecorderAllToolMenuWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderAllToolMenuWireframe extends React.FC<IVeltRecorderAllToolMenuWireframeProps> {
Video: IVeltRecorderAllToolMenuVideoWireframe;
Audio: IVeltRecorderAllToolMenuAudioWireframe;
Screen: IVeltRecorderAllToolMenuScreenWireframe;
}
declare const VeltRecorderAllToolMenuWireframe: IVeltRecorderAllToolMenuWireframe;
export default VeltRecorderAllToolMenuWireframe;