import { PipelineExecuteDto } from "../pipeline.dto"; export interface IPipelineProvider { init(settings: any): any; execute(data: any): Promise; layout(): any; }