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.

37 lines (36 loc) 3.09 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltRecorderPlayerCopyLinkWireframe } from '../VeltRecorderPlayerCopyLinkWireframe/VeltRecorderPlayerCopyLinkWireframe'; import { IVeltRecorderPlayerDeleteWireframe } from '../VeltRecorderPlayerDeleteWireframe/VeltRecorderPlayerDeleteWireframe'; import { IVeltRecorderPlayerFullScreenButtonWireframe } from '../VeltRecorderPlayerFullScreenButtonWireframe/VeltRecorderPlayerFullScreenButtonWireframe'; import { IVeltRecorderPlayerNameWireframe } from '../VeltRecorderPlayerNameWireframe/VeltRecorderPlayerNameWireframe'; import { IVeltRecorderPlayerOverlayWireframe } from '../VeltRecorderPlayerOverlayWireframe/VeltRecorderPlayerOverlayWireframe'; import { IVeltRecorderPlayerPlayButtonWireframe } from '../VeltRecorderPlayerPlayButtonWireframe/VeltRecorderPlayerPlayButtonWireframe'; import { IVeltRecorderPlayerSubtitlesButtonWireframe } from '../VeltRecorderPlayerSubtitlesButtonWireframe/VeltRecorderPlayerSubtitlesButtonWireframe'; import { IVeltRecorderPlayerSubtitlesWireframe } from '../VeltRecorderPlayerSubtitlesWireframe/VeltRecorderPlayerSubtitlesWireframe'; import { IVeltRecorderPlayerTimelineWireframe } from '../VeltRecorderPlayerTimelineWireframe/VeltRecorderPlayerTimelineWireframe'; import { IVeltRecorderPlayerTimeWireframe } from '../VeltRecorderPlayerTimeWireframe/VeltRecorderPlayerTimeWireframe'; import { IVeltRecorderPlayerTranscriptionWireframe } from '../VeltRecorderPlayerTranscriptionWireframe/VeltRecorderPlayerTranscriptionWireframe'; import { IVeltRecorderPlayerVideoWireframe } from '../VeltRecorderPlayerVideoWireframe/VeltRecorderPlayerVideoWireframe'; import { IVeltRecorderPlayerAvatarWireframe } from '../VeltRecorderPlayerAvatarWireframe/VeltRecorderPlayerAvatarWireframe'; import { IVeltRecorderPlayerEditButtonWireframe } from '../VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe'; export interface IVeltRecorderPlayerVideoContainerWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderPlayerVideoContainerWireframe extends React.FC<IVeltRecorderPlayerVideoContainerWireframeProps> { Video: IVeltRecorderPlayerVideoWireframe; Timeline: IVeltRecorderPlayerTimelineWireframe; PlayButton: IVeltRecorderPlayerPlayButtonWireframe; EditButton: IVeltRecorderPlayerEditButtonWireframe; FullScreenButton: IVeltRecorderPlayerFullScreenButtonWireframe; Overlay: IVeltRecorderPlayerOverlayWireframe; Time: IVeltRecorderPlayerTimeWireframe; Subtitles: IVeltRecorderPlayerSubtitlesWireframe; Name: IVeltRecorderPlayerNameWireframe; SubtitlesButton: IVeltRecorderPlayerSubtitlesButtonWireframe; Transcription: IVeltRecorderPlayerTranscriptionWireframe; CopyLink: IVeltRecorderPlayerCopyLinkWireframe; Delete: IVeltRecorderPlayerDeleteWireframe; Avatar: IVeltRecorderPlayerAvatarWireframe; } declare const VeltRecorderPlayerVideoContainerWireframe: IVeltRecorderPlayerVideoContainerWireframe; export default VeltRecorderPlayerVideoContainerWireframe;