@remotion/studio
Version:
APIs for interacting with the Remotion Studio
17 lines (16 loc) • 469 B
TypeScript
import type { UpdaterFunction } from './ZodSwitch';
import type { JSONPath } from './zod-types';
export declare const ZodArrayItemEditor: React.FC<{
jsonPath: JSONPath;
onChange: UpdaterFunction<unknown[]>;
def: any;
index: number;
value: unknown;
defaultValue: unknown;
onSave: UpdaterFunction<unknown[]>;
showSaveButton: boolean;
saving: boolean;
saveDisabledByParent: boolean;
mayPad: boolean;
mayRemove: boolean;
}>;