UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

8 lines (7 loc) 222 B
import * as React from 'react'; import type { OnChange } from './types'; export interface JsonPropertyProps { pointer: string; onChange?: OnChange; } export declare const JsonProperty: React.FC<JsonPropertyProps>;