UNPKG

@canard/schema-form

Version:

React-based component library that renders forms based on JSON Schema with plugin system support for validators and UI components

8 lines (7 loc) 292 B
import type { JsonSchemaWithVirtual } from '../../../../../types'; /** * Returns the node group based on the schema. * @param schema - JSON schema * @returns Node group: `branch` | `terminal` */ export declare const getNodeGroup: (schema: JsonSchemaWithVirtual) => "branch" | "terminal";