UNPKG

268 BTypeScriptView Raw
1import React from 'react';
2import type { CommonInternalProps } from './types.js';
3interface Props extends CommonInternalProps {
4 data: unknown;
5 nodeType: string;
6}
7export default function JSONObjectNode({ data, ...props }: Props): React.JSX.Element;
8export {};