From 0e10d2c93e15f4362952f74e1891fb7c5d47c2be Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:19:32 +0000 Subject: [PATCH] chore(internal): add missing return type annotation --- src/pagination.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pagination.ts b/src/pagination.ts index 006471f3..c6b86796 100644 --- a/src/pagination.ts +++ b/src/pagination.ts @@ -46,7 +46,7 @@ export class CursorPage return this.data ?? []; } - override hasNextPage() { + override hasNextPage(): boolean { return this.has_more && super.hasNextPage(); }