UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

8 lines (7 loc) 234 B
import * as React from 'react'; import type { OnChange } from './types'; export interface ClickableJsonContextValue { pfx: string; onChange?: OnChange; } export declare const context: React.Context<ClickableJsonContextValue>;