Skip to content

Commit 13aab10

Browse files
RobertCraigiestainless-app[bot]
authored andcommitted
chore(internal): add missing return type annotation (#1334)
1 parent 1f38cc1 commit 13aab10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pagination.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class CursorPage<Item extends { id: string }>
7777
return this.data ?? [];
7878
}
7979

80-
override hasNextPage() {
80+
override hasNextPage(): boolean {
8181
if (this.has_more === false) {
8282
return false;
8383
}

0 commit comments

Comments
 (0)