UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

7 lines (6 loc) 316 B
import { TableContextProps } from "../../contexts/TableContext"; export interface TableSearchDefaults { page?: number; rowsPerPage?: number; } export declare const useTableSearchParams: (defaults?: TableSearchDefaults) => Pick<TableContextProps, "page" | "rowsPerPage" | "changePage" | "changeRowsPerPage">;