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.

31 lines (30 loc) 2.53 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltRecorderPlayerAudioToggleWireframe } from '../VeltRecorderPlayerAudioToggleWireframe/VeltRecorderPlayerAudioToggleWireframe'; import { IVeltRecorderPlayerAudioWaveformWireframe } from '../VeltRecorderPlayerAudioWaveformWireframe/VeltRecorderPlayerAudioWaveformWireframe'; import { IVeltRecorderPlayerAudioWireframe } from '../VeltRecorderPlayerAudioWireframe/VeltRecorderPlayerAudioWireframe'; import { IVeltRecorderPlayerCopyLinkWireframe } from '../VeltRecorderPlayerCopyLinkWireframe/VeltRecorderPlayerCopyLinkWireframe'; import { IVeltRecorderPlayerDeleteWireframe } from '../VeltRecorderPlayerDeleteWireframe/VeltRecorderPlayerDeleteWireframe'; import { IVeltRecorderPlayerNameWireframe } from '../VeltRecorderPlayerNameWireframe/VeltRecorderPlayerNameWireframe'; import { IVeltRecorderPlayerSubtitlesButtonWireframe } from '../VeltRecorderPlayerSubtitlesButtonWireframe/VeltRecorderPlayerSubtitlesButtonWireframe'; import { IVeltRecorderPlayerSubtitlesWireframe } from '../VeltRecorderPlayerSubtitlesWireframe/VeltRecorderPlayerSubtitlesWireframe'; import { IVeltRecorderPlayerTimeWireframe } from '../VeltRecorderPlayerTimeWireframe/VeltRecorderPlayerTimeWireframe'; import { IVeltRecorderPlayerTranscriptionWireframe } from '../VeltRecorderPlayerTranscriptionWireframe/VeltRecorderPlayerTranscriptionWireframe'; import { IVeltRecorderPlayerAvatarWireframe } from '../VeltRecorderPlayerAvatarWireframe/VeltRecorderPlayerAvatarWireframe'; export interface IVeltRecorderPlayerAudioContainerWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltRecorderPlayerAudioContainerWireframe extends React.FC<IVeltRecorderPlayerAudioContainerWireframeProps> { AudioToggle: IVeltRecorderPlayerAudioToggleWireframe; Time: IVeltRecorderPlayerTimeWireframe; Audio: IVeltRecorderPlayerAudioWireframe; Subtitles: IVeltRecorderPlayerSubtitlesWireframe; Name: IVeltRecorderPlayerNameWireframe; SubtitlesButton: IVeltRecorderPlayerSubtitlesButtonWireframe; Transcription: IVeltRecorderPlayerTranscriptionWireframe; CopyLink: IVeltRecorderPlayerCopyLinkWireframe; Delete: IVeltRecorderPlayerDeleteWireframe; AudioWaveform: IVeltRecorderPlayerAudioWaveformWireframe; Avatar: IVeltRecorderPlayerAvatarWireframe; } declare const VeltRecorderPlayerAudioContainerWireframe: IVeltRecorderPlayerAudioContainerWireframe; export default VeltRecorderPlayerAudioContainerWireframe;