From 3de895c29ca3b07d3c760af91302d0de8accfbaf Mon Sep 17 00:00:00 2001 From: radekBednarik Date: Fri, 1 Nov 2024 14:02:54 +0100 Subject: [PATCH] chore: make deno typecheck happy --- src/helpers/sequential.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/sequential.ts b/src/helpers/sequential.ts index 41aea11..b5c2311 100644 --- a/src/helpers/sequential.ts +++ b/src/helpers/sequential.ts @@ -12,7 +12,7 @@ export default class Sequential { itemsPerPage?: number; waitAfterCall?: number; }, - ) { + ): Promise> { const data: Array<[T, null] | [null, GetApiError]> = []; const startPage = options.pages.start || 1;