UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

10 lines (9 loc) 258 B
import * as React from 'react'; import { NodeRef } from './NodeRef'; export interface TypeAndIdProps { node: NodeRef<any>; active?: boolean; negative?: boolean; extension?: boolean; } export declare const TypeAndId: React.FC<TypeAndIdProps>;