| 12345678910111213141516171819202122 |
- /*
- * @Author: liuJie
- * @Date: 2026-01-24 19:26:16
- * @LastEditors: liuJie
- * @LastEditTime: 2026-01-25 21:21:04
- * @Describe: 开始节点,
- */
- import type { IWorkflowNode } from '@repo/workflow'
- export const startNode:IWorkflowNode = {
- id: 'start-node',
- type: 'start-node',
- label: '开始',
- position: { x: 257, y: 203 },
- data: {
- id: 'start-node',
- label: '开始节点',
- description: '这是一个开始节点',
- inputs: [],
- outputs: []
- }
- }
|