UNPKG

276 BTypeScriptView Raw
1import { FunctionComponent, Key } from 'react';
2export interface ResizeObservedRowProps {
3 onResize: (rowIndex: Key, height: number) => void;
4 rowIndex: Key;
5}
6declare const ResizeObservedRow: FunctionComponent<ResizeObservedRowProps>;
7export default ResizeObservedRow;