http.ts 465 B

123456789101112131415161718192021
  1. /*
  2. * @Author: liuJie
  3. * @Date: 2026-01-24 19:45:07
  4. * @LastEditors: liuJie
  5. * @LastEditTime: 2026-01-25 22:00:48
  6. * @Describe: HTTP请求节点
  7. */
  8. import type { IWorkflowNode} from '@repo/workflow'
  9. export const httpNode: IWorkflowNode = {
  10. id: 'http-node',
  11. type: 'http-node',
  12. label: 'http',
  13. position: {x: 468, y: 370},
  14. data: {
  15. id: 'http-node-1',
  16. description: 'http请求节点',
  17. inputs: [],
  18. outputs: []
  19. }
  20. };