UNPKG

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