UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

27 lines 856 B
import type InputOptions from "../../interfaces/InputOptions"; /** * Take down the whole project & all of its apps * @example * dx down project * @param {InputOptions} options */ export declare const takedownProject: (options?: InputOptions) => Promise<void>; /** * Take down the whole app & all of its environments * @example * dx down app * dx down app <app-slug> * @param {InputOptions} options */ export declare const takedownApp: (options?: InputOptions) => Promise<void>; /** * Take down the whole app & all of its environments * @example * dx down * dx down --prod * dx down --env=canary * @param {InputOptions} options */ export declare const takedownEnvironment: (options?: InputOptions) => Promise<void>; export declare function execTakeDown(options?: InputOptions): Promise<void>; //# sourceMappingURL=exec-takedown.d.ts.map