Skip to content

Commit 272f8f3

Browse files
chore(internal): add missing return type annotation (#1334)
1 parent 849a10d commit 272f8f3

File tree

5 files changed

+1
-110
lines changed

5 files changed

+1
-110
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.yml

-64
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/config.yml

-7
This file was deleted.

Diff for: .github/ISSUE_TEMPLATE/feature_request.yml

-28
This file was deleted.

Diff for: .github/pull_request_template.md

-10
This file was deleted.

Diff for: 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)