UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

9 lines (8 loc) 437 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[];