| 12345678910111213141516171819202122232425262728 |
- import { NodeConnectionTypes, type INodeType } from '../Interface'
- export const endNode: INodeType = {
- version: ['1'],
- displayName: '结束',
- name: 'end',
- description: '流程结束节点',
- icon: 'lucide:unplug',
- iconColor: '#c49600',
- inputs: [NodeConnectionTypes.main],
- outputs: [],
- // 业务数据
- schema: {
- appAgentId: '',
- parentId: '',
- position: {
- x: 20,
- y: 30
- },
- width: 280,
- height: 60,
- selected: true,
- nodeType: 'end',
- zIndex: 1,
- data: {}
- }
- }
|