UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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