UNPKG

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