| 19 | }) |
| 20 | |
| 21 | export interface DagNode { |
| 22 | id: string |
| 23 | inputVariables: string[] |
| 24 | importedModules: string[] |
| 25 | importedPackages?: string[] |
| 26 | order: number |
| 27 | outputVariables: string[] |
| 28 | usedImportedModules: string[] |
| 29 | error: BlockError | null |
| 30 | } |
| 31 | |
| 32 | export interface DagEdge { |
| 33 | from: string |
nothing calls this directly
no outgoing calls
no test coverage detected