Skip to content

Commit

Permalink
feat: adjust types
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Feb 14, 2025
1 parent 63cad27 commit c49c7b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ui/PaginationHeader/PaginationHeader.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ export type PaginationHeaderProps = {
/** Total number of records across all pages */
total: number;
/** Initial page number */
initialPage: number;
page: number;
/** Initial number of items per page */
initialPageSize: number;
pageSize: number;
/** Number of selected records in the current page */
currentPageSelectedCount: number;
/** Total number of selected records across all pages */
Expand Down

0 comments on commit c49c7b8

Please sign in to comment.