Skip to content

Commit 912b6dd

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): add missing return type annotation (#1334)
1 parent e4b5546 commit 912b6dd

File tree

5 files changed

+1
-110
lines changed

5 files changed

+1
-110
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/pagination.ts

Lines changed: 1 addition & 1 deletion
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)