UNPKG

test-jsonforms-react-spectrum-renderers

Version:

React Spectrum Renderer Set for JSONForms

10 lines (9 loc) 432 B
import { JsonSchema, Layout } from '@jsonforms/core'; import { StyleProps } from '@react-types/shared'; export interface RenderChildrenProps { layout: Layout; schema: JsonSchema; styleProps: StyleProps; path: string; } export declare const renderChildren: (layout: Layout, schema: JsonSchema, styleProps: StyleProps | ((childIndex: number) => StyleProps), path: string, enabled?: boolean) => JSX.Element[];