( editor: Editor, shape: NodeShape, inputs: Record<string, number> )
| 84 | } |
| 85 | |
| 86 | export async function executeNode( |
| 87 | editor: Editor, |
| 88 | shape: NodeShape, |
| 89 | inputs: Record<string, number> |
| 90 | ): Promise<ExecutionResult> { |
| 91 | return await getNodeDefinition(editor, shape.props.node).execute(shape, shape.props.node, inputs) |
| 92 | } |
| 93 | |
| 94 | export function getNodeOutputInfo( |
| 95 | editor: Editor, |
no test coverage detected
searching dependent graphs…