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.

23 lines (22 loc) 1.98 kB
import React from 'react'; import { IVeltRecorderPlayerExpandedControlsWireframe } from './VeltRecorderPlayerExpandedControlsWireframe/VeltRecorderPlayerExpandedControlsWireframe'; import { IVeltRecorderPlayerExpandedCopyLinkWireframe } from './VeltRecorderPlayerExpandedCopyLinkWireframe/VeltRecorderPlayerExpandedCopyLinkWireframe'; import { IVeltRecorderPlayerExpandedDisplayWireframe } from './VeltRecorderPlayerExpandedDisplayWireframe/VeltRecorderPlayerExpandedDisplayWireframe'; import { IVeltRecorderPlayerExpandedMinimizeButtonWireframe } from './VeltRecorderPlayerExpandedMinimizeButtonWireframe/VeltRecorderPlayerExpandedMinimizeButtonWireframe'; import { IVeltRecorderPlayerExpandedPanelWireframe } from './VeltRecorderPlayerExpandedPanelWireframe/VeltRecorderPlayerExpandedPanelWireframe'; import { IVeltRecorderPlayerExpandedSubtitlesWireframe } from './VeltRecorderPlayerExpandedSubtitlesWireframe/VeltRecorderPlayerExpandedSubtitlesWireframe'; import { IVeltRecorderPlayerExpandedTranscriptionWireframe } from './VeltRecorderPlayerExpandedTranscriptionWireframe/VeltRecorderPlayerExpandedTranscriptionWireframe'; import { IVeltWireframeCommonProps } from '../../constants'; export interface IVeltRecorderPlayerExpandedWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderPlayerExpandedWireframe extends React.FC<IVeltRecorderPlayerExpandedWireframeProps> { Controls: IVeltRecorderPlayerExpandedControlsWireframe; CopyLink: IVeltRecorderPlayerExpandedCopyLinkWireframe; Display: IVeltRecorderPlayerExpandedDisplayWireframe; MinimizeButton: IVeltRecorderPlayerExpandedMinimizeButtonWireframe; Panel: IVeltRecorderPlayerExpandedPanelWireframe; Subtitles: IVeltRecorderPlayerExpandedSubtitlesWireframe; Transcription: IVeltRecorderPlayerExpandedTranscriptionWireframe; } declare const VeltRecorderPlayerExpandedWireframe: IVeltRecorderPlayerExpandedWireframe; export default VeltRecorderPlayerExpandedWireframe;