@chamn/engine
Version:
13 lines (12 loc) • 420 B
TypeScript
import { default as React } from 'react';
import { SetterObjType } from '@chamn/model';
export declare function ArrayItem(props: {
index: number;
labelPrefix?: string;
keyPaths: string[];
value: Record<string, any>;
setters: SetterObjType[];
style: React.CSSProperties;
onValueChange: (val: Record<string, any>) => void;
onDelete: () => void;
}): import("react/jsx-runtime").JSX.Element;