@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.
20 lines (19 loc) • 717 B
TypeScript
import { RecordedData, RecorderLayoutMode } from '@veltdev/types';
import React from 'react';
export interface IVeltRecorderControlPanelProps {
mode?: RecorderLayoutMode;
panelId?: string;
onRecordedData?: (data: RecordedData) => void;
recordingCountdown?: boolean;
recordingTranscription?: boolean;
videoEditor?: boolean;
settingsEmbedded?: boolean;
autoOpenVideoEditor?: boolean;
playVideoInFullScreen?: boolean;
retakeOnVideoEditor?: boolean;
pictureInPicture?: boolean;
maxLength?: number;
videoEditorTimelinePreview?: boolean;
}
declare const SnippylyRecorderControlPanel: React.FC<IVeltRecorderControlPanelProps>;
export default SnippylyRecorderControlPanel;