Skip to content

Commit 2069617

Browse files
stainless-botRobertCraigie
authored andcommitted
chore(internal): add missing return type annotation
1 parent 20d29f0 commit 2069617

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
@@ -178,7 +178,7 @@ export class CursorPage<Item extends { id: string }>
178178
return this.data ?? [];
179179
}
180180

181-
override hasNextPage() {
181+
override hasNextPage(): boolean {
182182
if (this.has_more === false) {
183183
return false;
184184
}

0 commit comments

Comments
 (0)