From 9b2ad3919e46bc798ad5a6880af8f53b5f23f58b Mon Sep 17 00:00:00 2001 From: Thiago Saife Rodrigues Date: Fri, 27 Jan 2023 09:13:04 -0300 Subject: [PATCH] fix(int 790): fix return type for getAll --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index f0294085..f4d29b4a 100755 --- a/src/index.ts +++ b/src/index.ts @@ -222,7 +222,7 @@ class Storyblok { slug: string, params: ISbStoriesParams, entity?: string - ): Promise { + ): Promise { const perPage = params?.per_page || 25 const url = `/${slug}` const urlParts = url.split('/')