UNPKG

411 BTypeScriptView Raw
1import React from 'react';
2import { JSONValueNodeCircularPropsProvidedByJSONNode } from './types';
3/**
4 * Renders simple values (eg. strings, numbers, booleans, etc)
5 */
6interface Props extends JSONValueNodeCircularPropsProvidedByJSONNode {
7 nodeType: string;
8 value: any;
9 valueGetter?: (value: any) => any;
10}
11declare const JSONValueNode: React.FunctionComponent<Props>;
12export default JSONValueNode;