@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.
13 lines (12 loc) • 715 B
TypeScript
import React from 'react';
import { IVeltSubtitlesEmbedModeWireframe } from './VeltSubtitlesEmbedModeWireframe/VeltSubtitlesEmbedModeWireframe';
import { IVeltSubtitlesFloatingModeWireframe } from './VeltSubtitlesFloatingModeWireframe/VeltSubtitlesFloatingModeWireframe';
import { IVeltWireframeCommonProps } from '../../constants';
export interface IVeltSubtitlesWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltSubtitlesWireframe extends React.FC<IVeltSubtitlesWireframeProps> {
EmbedMode: IVeltSubtitlesEmbedModeWireframe;
FloatingMode: IVeltSubtitlesFloatingModeWireframe;
}
declare const VeltSubtitlesWireframe: IVeltSubtitlesWireframe;
export default VeltSubtitlesWireframe;