extended-dynamic-forms
Version:
Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events
6 lines (5 loc) • 324 B
TypeScript
export type PathSegment = string | number;
export type Path = PathSegment[];
export declare const getByPath: <T = unknown>(input: T, path: Path) => unknown;
export declare const setByPath: <T = unknown>(input: T, path: Path, value: unknown) => T;
export declare const deleteByPath: <T = unknown>(input: T, path: Path) => T;