@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
9 lines • 754 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 {};