@remotion/studio
Version:
APIs for interacting with the Remotion Studio
13 lines (12 loc) • 551 B
TypeScript
import type { SequenceNodePath } from '@remotion/studio-shared';
import React from 'react';
import type { CodePosition } from '../../error-overlay/react-overlay/utils/get-source-map';
import type { SchemaFieldInfo } from '../../helpers/timeline-layout';
export declare const TimelineFieldRow: React.FC<{
readonly field: SchemaFieldInfo;
readonly overrideId: string;
readonly validatedLocation: CodePosition | null;
readonly nestedDepth: number;
readonly nodePath: SequenceNodePath | null;
readonly keysToObserve: string[];
}>;