UNPKG

@starter-ui/core

Version:

This is a UI Components built with the utility classes from Tailwind CSS.

10 lines (9 loc) 290 B
interface Props { total: number; pageSize: number; current: number; siblingCount?: number; } export declare const DOTS = "..."; declare const usePagination: ({ total, pageSize, current, siblingCount }: Props) => Array<string | number> | undefined; export { usePagination };