UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

9 lines (8 loc) 329 B
import React from 'react'; import type { AnyZodSchema } from './zod-schema-type'; import type { UpdaterFunction } from './ZodSwitch'; export declare const SchemaEditor: React.FC<{ readonly schema: AnyZodSchema; readonly value: Record<string, unknown>; readonly setValue: UpdaterFunction<Record<string, unknown>>; }>;