react-json-tree
Version:
React JSON Viewer Component, Extracted from redux-devtools
14 lines (13 loc) • 435 B
TypeScript
import React from 'react';
import type { CircularCache, CommonInternalProps } from './types.js';
interface Props extends CommonInternalProps {
data: unknown;
nodeType: string;
from: number;
to: number;
renderChildNodes: (props: Props, from: number, to: number) => React.ReactNode;
circularCache: CircularCache;
level: number;
}
export default function ItemRange(props: Props): React.JSX.Element;
export {};