UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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