Skip to content

Commit

Permalink
fix: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
maddocnc committed Oct 23, 2023
1 parent e4e5747 commit 1ac6671
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 1ac6671

Please sign in to comment.