UNPKG

itk-wasm

Version:

High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.

10 lines (9 loc) 237 B
import PipelineOutput from './pipeline-output.js'; interface RunPipelineResult { returnValue: number; stdout: string; stderr: string; outputs: PipelineOutput[]; webWorker?: Worker; } export default RunPipelineResult;