@remotion/studio
Version:
APIs for interacting with the Remotion Studio
14 lines (13 loc) • 502 B
TypeScript
import React from 'react';
import type { AnyZodSchema } from './zod-schema-type';
export declare const VERTICAL_GUIDE_HEIGHT = 24;
export declare const SchemaSeparationLine: React.FC;
export declare const SchemaArrayItemSeparationLine: React.FC<{
readonly onChange: (updater: (oldV: unknown[]) => unknown[], options: {
shouldSave: boolean;
}) => void;
readonly index: number;
readonly schema: AnyZodSchema;
readonly showAddButton: boolean;
readonly isLast: boolean;
}>;