UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

12 lines (11 loc) 309 B
import * as React from 'react'; import type { OnChange } from './types'; export interface JsonDocProps { property?: string | number; doc: unknown; pointer: string; parentCollapsed?: boolean; comma?: boolean; onChange?: OnChange; } export declare const JsonDoc: React.FC<JsonDocProps>;