UNPKG

@padhariyavishal/offset-pagination

Version:

Offset pagination package to help dynamically create an pagination of items array

10 lines (9 loc) 323 B
export interface DataPaginationType<T> { currentPage: number; totalPages: number; pages: number[]; hasPreviousPage: boolean; hasNextPage: boolean; items: T[]; } export declare function DataPagination<T>(items: T[], currentPage: number, itemsPerPage: number, midSize: number): DataPaginationType<T>;