UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

12 lines (11 loc) 457 B
import type { PipelineType } from "../types"; import type { Config, PipelineTrigger } from "../types/config"; import type { ComponentContext } from "../types/context"; export type CreateComponentContextContext = { config: Config; componentName: string; env: string; pipelineType?: PipelineType; trigger?: PipelineTrigger; }; export declare const createComponentContext: (ctx: CreateComponentContextContext) => Promise<ComponentContext>;