import { NodeConnectionTypes, type INodeType } from '../Interface' export const startNode: INodeType = { version: ['1'], displayName: '开始', name: 'start', description: '流程开始节点', icon: 'lucide:play', iconColor: '#409eff', inputs: [], outputs: [NodeConnectionTypes.main], // 业务数据 schema: { appAgentId: '', parentId: '', position: { x: 20, y: 30 }, width: 280, height: 60, selected: true, nodeType: 'start', zIndex: 1, data: {} } }