itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
14 lines (11 loc) • 368 B
text/typescript
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