UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

8 lines 430 B
import type { ComponentContext } from "../../types/context"; import type { DeployJobDefinition, RollbackJobDefinition, StopJobDefinition } from "../../types/jobDefinition"; import type { CatladderJob } from "../../types/jobs"; export declare const createDeployementJobs: (context: ComponentContext, definitions: { deploy: DeployJobDefinition; stop?: StopJobDefinition; rollback?: RollbackJobDefinition; }) => CatladderJob[];