diff --git a/blocks/types.ts b/blocks/types.ts index da9a46457..e5d0e1f53 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