UNPKG

react-forminate

Version:

React.js + Typescript package that creates dynamic UI forms based on the JSON schema

8 lines (7 loc) 413 B
import { ComputedValue, FieldPropContext, FormFieldType, ProcessedFieldProps } from '../types'; export declare class PropertyProcessor { static process<T>(prop: T | ComputedValue<T>, context: FieldPropContext): T; private static isComputedValue; static processFieldProps(field: FormFieldType, context: FieldPropContext): ProcessedFieldProps<FormFieldType>; private static isProcessableProperty; }