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