start.ts 459 B

1234567891011121314151617181920212223
  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: 80, y: 272 },
  14. data: {
  15. id: 'start-node',
  16. label: '开始节点',
  17. description: '这是一个开始节点',
  18. inputs: [],
  19. outputs: []
  20. }
  21. }