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

19 lines (18 loc) 906 B
import type { NumberSchema } from '../../../../../../types'; /** * Intersects two number schema objects, merging their constraints and properties. * * This function performs a complete intersection of number-specific schema properties including: * - Numeric constraints (minimum, maximum, exclusive bounds) * - Multiple of constraints * - Enum and const value intersections * - Type promotion (number to integer if applicable) * - Required field unions * - Validation of constraint consistency * * @param base - The base number schema to modify and return * @param source - The source number schema to intersect with base * @returns The modified base schema with intersected properties * @throws {JsonSchemaError} When constraints create invalid ranges or conflicting values */ export declare const intersectNumberSchema: (base: NumberSchema, source: Partial<NumberSchema>) => NumberSchema;