Skip to content

Commit

Permalink
Merge pull request #3 from frenchrabbit/dev
Browse files Browse the repository at this point in the history
fix: fix types
  • Loading branch information
maddocnc committed Oct 23, 2023
2 parents 19e9c42 + 1ac6671 commit 6c56092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/paginated-result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export class PaginatedResult<T> {
/**
* has previous page
*/
hasPrevPage?: Boolean = false
hasPrevPage?: boolean = false
/**
* has next page
*/
hasNextPage?: Boolean = false
hasNextPage?: boolean = false

/**
* previous page number
Expand Down

0 comments on commit 6c56092

Please sign in to comment.