@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
12 lines • 415 B
TypeScript
import type { ComponentContext, PipelineType } from "../types";
import type { Config, PipelineTrigger } from "../types/config";
export type CreateAllComponentsContextProps = {
config: Config;
trigger: PipelineTrigger;
pipelineType: PipelineType;
};
export declare const createAllComponentsContext: ({
config,
trigger,
pipelineType
}: CreateAllComponentsContextProps) => Promise<Array<ComponentContext>>;