@remotion/studio
Version:
APIs for interacting with the Remotion Studio
14 lines (13 loc) • 592 B
TypeScript
import React from 'react';
import type { CanUpdateSequencePropStatus } from 'remotion';
import type { SchemaFieldInfo } from '../../helpers/timeline-layout';
export declare const TimelineFieldValue: React.FC<{
readonly field: SchemaFieldInfo;
readonly onSave: (key: string, value: unknown) => Promise<void>;
readonly onDragValueChange: (key: string, value: unknown) => void;
readonly onDragEnd: () => void;
readonly canUpdate: boolean;
readonly propStatus: CanUpdateSequencePropStatus | null;
readonly codeValue: unknown;
readonly effectiveValue: unknown;
}>;