UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

7 lines (6 loc) 336 B
import type { IPipelineStep } from '../pipeline-step'; import type { Pipeline } from './pipeline'; /** * Given a set of {@link IPipelineStep|steps} with their dependencies, this function verifies all requirements of {@link createPipeline}. */ export declare function verifyAndBuildPipeline(steps: readonly IPipelineStep[]): Pipeline;