@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
10 lines (9 loc) • 755 B
TypeScript
import type { BuildContextStandalone, ComponentContextWithBuild, WorkspaceContext } from "../../types/context";
import { type ComponentContext } from "../../types/context";
import type { AppBuildJobDefinition, DockerBuildJobDefinition } from "../../types/jobDefinition";
import type { CatladderJob } from "../../types/jobs";
export declare const createNodeBuildJobs: (context: ComponentContextWithBuild | WorkspaceContext) => CatladderJob[];
export declare const createNodeBuildJobDefinition: (context: ComponentContext<BuildContextStandalone> | WorkspaceContext) => AppBuildJobDefinition | undefined;
type NewType = ComponentContextWithBuild;
export declare const createNodeDockerJobDefinition: (context: NewType) => DockerBuildJobDefinition;
export {};