| 41 | |
| 42 | // Types for the visualization grammar |
| 43 | interface BlockOp { |
| 44 | type: string; |
| 45 | label?: string; |
| 46 | width?: number; // relative unit |
| 47 | height?: number; // relative unit |
| 48 | id?: string; |
| 49 | } |
| 50 | |
| 51 | interface StackOp { |
| 52 | type: "stack"; |
nothing calls this directly
no outgoing calls
no test coverage detected