UNPKG

extended-dynamic-forms

Version:

Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events

10 lines (9 loc) 280 B
/** * Simple JSON Patch-like utility for applying operations to objects * Supports add, remove, and replace operations with JSONPath-like syntax */ export declare function applyPatch(target: any, operations: Array<{ op: string; path: string; value?: any; }>): any;