UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

8 lines (7 loc) 248 B
import * as React from 'react'; export interface ObjectInsertProps { visible?: boolean; withType?: boolean; onSubmit: (key: string, value: string, type: string) => void; } export declare const ObjectInsert: React.FC<ObjectInsertProps>;