react-monaco-json-merge
Version:
A powerful React component for 3-way JSON merging with semantic comparison, built on Monaco Editor. Features schema-aware conflict detection, interactive resolution, and real-time validation.
9 lines • 378 B
TypeScript
import isEqual from "fast-deep-equal";
import sortKeys from "sort-keys";
/**
* Get value at a path in an object
* Supports JSON Pointer format: "/path/to/value" or "/array/0/item"
*/
export declare const getValueAtPath: <T = unknown>(obj: Record<string, unknown> | undefined, path: string) => T | undefined;
export { isEqual, sortKeys };
//# sourceMappingURL=helpers.d.ts.map