From 6715141c92f335f59c2b858bc974029ee1a34202 Mon Sep 17 00:00:00 2001 From: Mikalai Ausiannikau Date: Mon, 10 Jul 2023 18:39:17 +0300 Subject: [PATCH] fix: incorrect ContentstackCollection items type --- types/contentstackCollection.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/contentstackCollection.d.ts b/types/contentstackCollection.d.ts index 07d6dff0..c89eb64b 100644 --- a/types/contentstackCollection.d.ts +++ b/types/contentstackCollection.d.ts @@ -3,7 +3,7 @@ export interface Response { } export interface ContentstackCollection extends Response { - items: [T] + items: T[] count: number }