(sourceId: string)
| 146 | const ext = getWorkflowExtension(node.data.extensionId ?? '', allExtensions) |
| 147 | |
| 148 | const resolveSource = (sourceId: string): NodeOutput | undefined => { |
| 149 | const realId = resolveDataSource(sourceId, workflow.edges, nodeMap) |
| 150 | return realId ? nodeOutputs.get(realId) : undefined |
| 151 | } |
| 152 | |
| 153 | let nodeInputPath: string | undefined |
| 154 | let nodeInputText: string | undefined |
no test coverage detected