@remotion/studio
Version:
APIs for interacting with the Remotion Studio
12 lines (11 loc) • 373 B
TypeScript
import type { AnyZodSchema } from './zod-schema-type';
import type { JSONPath } from './zod-types';
import type { UpdaterFunction } from './ZodSwitch';
export declare const ZodNullableEditor: React.FC<{
jsonPath: JSONPath;
value: unknown;
schema: AnyZodSchema;
setValue: UpdaterFunction<unknown>;
onRemove: null | (() => void);
mayPad: boolean;
}>;