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.

18 lines (17 loc) 506 B
import React from 'react'; export interface IVeltRecorderPlayerProps { recorderId?: string; onDelete?: Function; /** * @deprecated Use `summary` instead. */ showSummary?: boolean; summary?: boolean; shadowDom?: boolean; videoEditor?: boolean; playVideoInFullScreen?: boolean; retakeOnVideoEditor?: boolean; playbackOnPreviewClick?: boolean; } declare const SnippylyRecorderPlayer: React.FC<IVeltRecorderPlayerProps>; export default SnippylyRecorderPlayer;