UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

13 lines (12 loc) 579 B
import type { SequenceNodePath } from '@remotion/studio-shared'; import React from 'react'; import type { TSequence } from 'remotion'; import type { OriginalPosition } from '../../error-overlay/react-overlay/utils/get-source-map'; export declare const EXPANDED_SECTION_PADDING_LEFT = 28; export declare const EXPANDED_SECTION_PADDING_RIGHT = 10; export declare const TimelineExpandedSection: React.FC<{ readonly sequence: TSequence; readonly originalLocation: OriginalPosition | null; readonly nestedDepth: number; readonly nodePath: SequenceNodePath | null; }>;