UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

9 lines 781 B
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) => Promise<CatladderJob[]>; export declare const createNodeBuildJobDefinition: (context: ComponentContext<BuildContextStandalone> | WorkspaceContext) => Promise<AppBuildJobDefinition | undefined>; type NewType = ComponentContextWithBuild; export declare const createNodeDockerJobDefinition: (context: NewType) => Promise<DockerBuildJobDefinition>; export {};