UNPKG

@ui-schema/react

Version:

Schema-driven UI generator for React using JSON Schema. Build powerful form and interface generators with headless components and hooks.

11 lines (10 loc) 397 B
import * as React from 'react'; import type { WidgetPluginProps } from '@ui-schema/react/WidgetEngine'; import type { SomeSchema } from '@ui-schema/ui-schema/CommonTypings'; export interface InjectSplitSchemaRootContext { schemaStyle?: SomeSchema; } /** * @deprecated use a custom schemaPlugin instead */ export declare const InjectSplitSchemaPlugin: React.ComponentType<WidgetPluginProps>;