Skip to content

Commit

Permalink
chore: make deno typecheck happy
Browse files Browse the repository at this point in the history
  • Loading branch information
radekBednarik committed Nov 1, 2024
1 parent ef73721 commit 3de895c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/sequential.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Sequential {
itemsPerPage?: number;
waitAfterCall?: number;
},
) {
): Promise<Array<[T, null] | [null, GetApiError]>> {
const data: Array<[T, null] | [null, GetApiError]> = [];

const startPage = options.pages.start || 1;
Expand Down

0 comments on commit 3de895c

Please sign in to comment.