UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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