| 12345678910111213141516171819202122 |
- export type DZWFData = {
- elements: {
- diagram: {
- position: { x: number, y: number }
- },
- outs: unknown[],
- ins: unknown[],
- variables: unknown[],
- stages: unknown[],
- name: string,
- type: string,
- id: string
- }[],
- links: {
- sourceId: string,
- targetId: string,
- id: string,
- diagram?: {
- vertices: { x: number, y: number }[]
- }
- }[]
- };
|