From f9d6cf94775aec6f3e6268cf7870da2644506de2 Mon Sep 17 00:00:00 2001 From: denkristoffer Date: Fri, 9 Sep 2022 13:51:12 +0200 Subject: [PATCH] fix(utils): use literal union for ContentEntityType --- lib/types/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/utils.ts b/lib/types/utils.ts index 89c7d61906..2cc314f04e 100644 --- a/lib/types/utils.ts +++ b/lib/types/utils.ts @@ -33,7 +33,7 @@ export interface CollectionResponse { sys: { type: string } } -export type ContentEntityType = 'Entry' | 'Asset' | string +export type ContentEntityType = 'Entry' | 'Asset' export interface ContentEntitySys { space: Link