UNPKG

itk-wasm

Version:

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

12 lines (11 loc) 385 B
import PipelineInput from '../pipeline-input.js'; import PipelineOutput from '../pipeline-output.js'; import WebWorkerInput from './web-worker-input.js'; interface RunPipelineInput extends WebWorkerInput { pipelinePath: string | object; pipelineBaseUrl: string; args: string[]; outputs: PipelineOutput[]; inputs: PipelineInput[]; } export default RunPipelineInput;