UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

12 lines (11 loc) 366 B
import type { AnyZodSchema } from './zod-schema-type'; import type { JSONPath } from './zod-types'; import type { UpdaterFunction } from './ZodSwitch'; export declare const ZodTupleItemEditor: React.FC<{ jsonPath: JSONPath; onChange: UpdaterFunction<unknown[]>; tupleItems: AnyZodSchema[]; index: number; value: unknown; mayPad: boolean; }>;