Skip to content

Commit

Permalink
fix: add prevPage & nextPage to Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Dec 23, 2024
1 parent 2b9895a commit 155c09c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ interface IWithPagination<T = any> {
interface IPagination {
total?: number;
lastPage?: number;
prevPage?: number | null;
nextPage?: number | null;
currentPage: number;
perPage: number;
from: number;
Expand Down

0 comments on commit 155c09c

Please sign in to comment.