Skip to content

Commit

Permalink
chore(internal): add missing return type annotation (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Feb 14, 2025
1 parent 33be1f7 commit 3c75a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pagination.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class CursorPage<Item extends { id: string }>
return this.data ?? [];
}

override hasNextPage() {
override hasNextPage(): boolean {
return this.has_more && super.hasNextPage();
}

Expand Down

0 comments on commit 3c75a29

Please sign in to comment.