UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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