UNPKG

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