@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.
15 lines (14 loc) • 1.29 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../../../constants';
import { IVeltVideoEditorPlayerTimelineOnboardingContentWireframe } from './VeltVideoEditorPlayerTimelineOnboardingContentWireframe/VeltVideoEditorPlayerTimelineOnboardingContentWireframe';
import { IVeltVideoEditorPlayerTimelineOnboardingTextWireframe } from './VeltVideoEditorPlayerTimelineOnboardingTextWireframe/VeltVideoEditorPlayerTimelineOnboardingTextWireframe';
import { IVeltVideoEditorPlayerTimelineOnboardingArrowWireframe } from './VeltVideoEditorPlayerTimelineOnboardingArrowWireframe/VeltVideoEditorPlayerTimelineOnboardingArrowWireframe';
export interface IVeltVideoEditorPlayerTimelineOnboardingWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltVideoEditorPlayerTimelineOnboardingWireframe extends React.FC<IVeltVideoEditorPlayerTimelineOnboardingWireframeProps> {
Content: IVeltVideoEditorPlayerTimelineOnboardingContentWireframe;
Text: IVeltVideoEditorPlayerTimelineOnboardingTextWireframe;
Arrow: IVeltVideoEditorPlayerTimelineOnboardingArrowWireframe;
}
declare const VeltVideoEditorPlayerTimelineOnboardingWireframe: IVeltVideoEditorPlayerTimelineOnboardingWireframe;
export default VeltVideoEditorPlayerTimelineOnboardingWireframe;