Skip to content

Commit a8862b9

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): add missing return type annotation (#685)
1 parent 56d9c7a commit a8862b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pagination.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class Page<Item> extends AbstractPage<Item> implements PageResponse<Item>
4545
return this.data ?? [];
4646
}
4747

48-
override hasNextPage() {
48+
override hasNextPage(): boolean {
4949
if (this.has_more === false) {
5050
return false;
5151
}

0 commit comments

Comments
 (0)