UNPKG

@sysafarila/js-paginate

Version:

An agnostic pagination package for JavaScript.

10 lines (7 loc) 221 B
type PaginateProps = { pages: number; current_page: number; length?: number; }; declare function paginate({ pages, current_page, length, }: PaginateProps): number[]; export { type PaginateProps, paginate };