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.

17 lines (16 loc) 574 B
import { RecorderMode } from '@veltdev/types'; import React from 'react'; export interface IVeltRecorderToolProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> { type?: RecorderMode; panelId?: string; buttonLabel?: string; darkMode?: boolean; shadowDom?: boolean; recordingCountdown?: boolean; variant?: string; retakeOnVideoEditor?: boolean; pictureInPicture?: boolean; maxLength?: number; } declare const SnippylyRecorderTool: React.FC<IVeltRecorderToolProps>; export default SnippylyRecorderTool;