balibabu
Feat: The Begin and IterationStart operators cannot be deleted using shortcut keys #4287 (#4288)
b1ea792
import { RAGFlowNodeType } from '@/interfaces/database/flow'; | |
import { FormInstance } from 'antd'; | |
export interface IOperatorForm { | |
onValuesChange?(changedValues: any, values: any): void; | |
form?: FormInstance; | |
node?: RAGFlowNodeType; | |
nodeId?: string; | |
} | |
export interface IGenerateParameter { | |
id?: string; | |
key: string; | |
component_id?: string; | |
} | |
export interface IInvokeVariable extends IGenerateParameter { | |
value?: string; | |
} | |
export type IPosition = { top: number; right: number; idx: number }; | |
export interface BeginQuery { | |
key: string; | |
type: string; | |
value: string; | |
optional: boolean; | |
name: string; | |
options: (number | string | boolean)[]; | |
} | |