UNPKG

633 BTypeScriptView Raw
1import React from 'react';
2import type { CircularCache, CommonInternalProps } from './types.js';
3/**
4 * Renders nested values (eg. objects, arrays, lists, etc.)
5 */
6export interface RenderChildNodesProps extends CommonInternalProps {
7 data: unknown;
8 nodeType: string;
9 circularCache: CircularCache;
10 level: number;
11}
12interface Props extends CommonInternalProps {
13 data: unknown;
14 nodeType: string;
15 nodeTypeIndicator: string;
16 createItemString: (data: unknown, collectionLimit: number) => string;
17 expandable: boolean;
18}
19export default function JSONNestedNode(props: Props): React.JSX.Element;
20export {};