UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

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