UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

8 lines (7 loc) 268 B
import * as React from 'react'; import { type ObjNode } from 'json-joy/lib/json-crdt'; import { NodeRef } from '../../NodeRef'; export interface JsonCrdtObjNodeProps { node: NodeRef<ObjNode>; } export declare const JsonCrdtObjNode: React.FC<JsonCrdtObjNodeProps>;