@etsoo/materialui
Version:
TypeScript Material-UI Implementation
15 lines (14 loc) • 465 B
TypeScript
import type { ListPageProps } from "./ListPage";
/**
* Fixed height list page
* @param props Props
* @returns Component
*/
export declare function FixedListPage<T extends object, F>(props: ListPageProps<T, F> & {
/**
* Height will be deducted
* @param height Current calcuated height
* @param rect Current rect data
*/
adjustHeight?: number | ((height: number, rect: DOMRect) => number);
}): import("react/jsx-runtime").JSX.Element;