UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

22 lines (21 loc) 612 B
import type { MutableRefObject } from 'react'; import type { ClassNames } from './types/index.js'; interface VerticalResizerProps { analyticalTableRef: MutableRefObject<any>; dispatch: (e: { type: string; payload?: any; }) => void; extensionsHeight: number; hasPopInColumns: boolean; popInRowHeight: number; rowsLength: number; visibleRows: number; handleOnLoadMore: (e: Event) => void; classNames: ClassNames; } export declare const VerticalResizer: { (props: VerticalResizerProps): import("react").JSX.Element; displayName: string; }; export {};