UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

9 lines (8 loc) 417 B
import type { ComponentContext, PipelineType } from "../types"; import type { Config, PipelineTrigger } from "../types/config"; export type CreateAllComponentsContextProps = { config: Config; trigger: PipelineTrigger; pipelineType: PipelineType; }; export declare const createAllComponentsContext: ({ config, trigger, pipelineType, }: CreateAllComponentsContextProps) => Promise<Array<ComponentContext>>;