UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

7 lines (6 loc) 190 B
import * as React from 'react'; export interface ValueInputProps { value: unknown; onChange?: (value: unknown) => void; } export declare const ValueInput: React.FC<ValueInputProps>;