UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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