UNPKG

435 BTypeScriptView Raw
1import React from 'react';
2import type { CircularCache, CommonInternalProps } from './types.js';
3interface Props extends CommonInternalProps {
4 data: unknown;
5 nodeType: string;
6 from: number;
7 to: number;
8 renderChildNodes: (props: Props, from: number, to: number) => React.ReactNode;
9 circularCache: CircularCache;
10 level: number;
11}
12export default function ItemRange(props: Props): React.JSX.Element;
13export {};