Skip to content

Commit

Permalink
fix: sbBlokKeyDataTypes missing for boolean type
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkha committed Jul 6, 2022
1 parent e6e4522 commit a273e33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string> {
[index: string]: SbBlokKeyDataTypes;
Expand Down

0 comments on commit a273e33

Please sign in to comment.