UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

10 lines (9 loc) 295 B
import * as React from 'react'; import { NodeRef } from '../../NodeRef'; import type { StrNode } from 'json-joy/lib/json-crdt'; export interface StrEditProps { node: NodeRef<StrNode>; onCancel?: () => void; onDone: () => void; } export declare const StrEdit: React.FC<StrEditProps>;