@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
11 lines • 446 B
TypeScript
import type { PipelineType } from "../types";
import type { Config, PipelineTrigger } from "../types/config";
import type { ComponentContext } from "../types/context";
export type CreateComponentContextContext = {
config: Config;
componentName: string;
env: string;
pipelineType?: PipelineType;
trigger?: PipelineTrigger;
};
export declare const createComponentContext: (ctx: CreateComponentContextContext) => Promise<ComponentContext>;