From a273e332d9c0a0ec69709abe49272e06fd38ec61 Mon Sep 17 00:00:00 2001 From: jpkha Date: Tue, 5 Jul 2022 17:44:40 +0200 Subject: [PATCH] fix: sbBlokKeyDataTypes missing for boolean type --- lib/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.ts b/lib/types.ts index 9ea85212..f9701d1b 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -17,7 +17,7 @@ export interface SbInitResult { } export type SbPluginFactory = (options: SbSDKOptions) => any; -export type SbBlokKeyDataTypes = string | number | object; +export type SbBlokKeyDataTypes = string | number | object | boolean; export interface SbBlokData extends StoryblokComponent { [index: string]: SbBlokKeyDataTypes;