From 38a8a7c2014b08847d2f6f83e1fcb27ebc1e7cb3 Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Mon, 3 Feb 2025 22:01:34 -0800 Subject: [PATCH] Deleted unnecessary type for output in block types --- blocks/types.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/blocks/types.ts b/blocks/types.ts index da9a46457c..e5d0e1f53c 100644 --- a/blocks/types.ts +++ b/blocks/types.ts @@ -18,17 +18,6 @@ export type ParamType = 'string' | 'number' | 'boolean' | 'json' export type SubBlockType = 'short-input' | 'long-input' | 'dropdown' | 'slider' | 'table' | 'code' | 'switch' | 'tool-input' export type SubBlockLayout = 'full' | 'half' -export interface OutputConfig { - type: ValueType - dependsOn?: { - subBlockId: string - condition: { - whenEmpty: BlockOutput - whenFilled: BlockOutput - } - } -} - export interface ParamConfig { type: ParamType required: boolean