DZWFData.ts 362 B

12345678910111213141516171819202122
  1. export type DZWFData = {
  2. elements: {
  3. diagram: {
  4. position: { x: number, y: number }
  5. },
  6. outs: unknown[],
  7. ins: unknown[],
  8. variables: unknown[],
  9. stages: unknown[],
  10. name: string,
  11. type: string,
  12. id: string
  13. }[],
  14. links: {
  15. sourceId: string,
  16. targetId: string,
  17. id: string,
  18. diagram?: {
  19. vertices: { x: number, y: number }[]
  20. }
  21. }[]
  22. };