| 1234567891011121314151617181920212223 |
- /*
- * @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: 80, y: 272 },
- data: {
- id: 'start-node',
- label: '开始节点',
- description: '这是一个开始节点',
- inputs: [],
- outputs: []
- }
- }
|