@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
7 lines • 518 B
TypeScript
import type { CacheConfig } from "..";
import type { Context } from "../../types";
import type { CatladderJobCache } from "../../types/jobs";
import type { WithCacheConfig } from "../types";
export declare const createJobCacheFromCacheConfigs: (context: Context, caches: CacheConfig[]) => CatladderJobCache[] | undefined;
/** shortcut, used in some build types */
export declare const createJobCacheFromConfig: (context: Context, configWithCache: WithCacheConfig) => import("../../types").GitlabJobCache[] | undefined;