@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
13 lines (12 loc) • 398 B
TypeScript
import React from 'react';
interface NodePosition {
elements: Set<HTMLElement>;
bottom: number;
top: number;
}
export declare function getRowPositionsData(containerRef: React.RefObject<HTMLElement | null>, overflowRef: React.RefObject<HTMLElement | null>): {
itemsSizesMap: Record<number, NodePosition>;
rowPositions: number[];
children: HTMLElement[];
} | null;
export {};