UNPKG

326 BTypeScriptView Raw
1import React from 'react';
2import { CircularPropsPassedThroughJSONNode } from './types';
3interface Props extends CircularPropsPassedThroughJSONNode {
4 keyPath: (string | number)[];
5 value: any;
6 isCustomNode: (value: any) => boolean;
7}
8declare const JSONNode: React.FunctionComponent<Props>;
9export default JSONNode;