Deleted unnecessary type for output in block types

This commit is contained in:
Emir Karabeg
2025-02-03 22:01:34 -08:00
parent 08fe6f2d39
commit 38a8a7c201

View File

@@ -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