start.ts 506 B

12345678910111213141516171819202122
  1. /*
  2. * @Author: liuJie
  3. * @Date: 2026-01-24 19:26:16
  4. * @LastEditors: liuJie
  5. * @LastEditTime: 2026-01-25 21:21:04
  6. * @Describe: 开始节点,
  7. */
  8. import type { IWorkflowNode } from '@repo/workflow'
  9. export const startNode:IWorkflowNode = {
  10. id: 'start-node',
  11. type: 'start-node',
  12. label: '开始',
  13. position: { x: 257, y: 203 },
  14. data: {
  15. id: 'start-node',
  16. label: '开始节点',
  17. description: '这是一个开始节点',
  18. inputs: [],
  19. outputs: []
  20. }
  21. }