UNPKG

@topgroup/diginext

Version:

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

24 lines 744 B
import PQueue from "p-queue"; import type { IBuild, IRelease } from "../../entities"; import type { InputOptions } from "../../interfaces/InputOptions"; export declare let queue: PQueue<import("p-queue/dist/priority-queue").default, import("p-queue").DefaultAddOptions>; /** * Stop the build process. */ export declare const stopBuild: (projectSlug: string, appSlug: string, buildSlug: string) => Promise<IBuild | { error: any; }>; /** * Start build the app with {InputOptions} * @deprecated */ export declare function startBuildV1(options: InputOptions, addition?: { /** * @default true */ shouldRollout?: boolean; }): Promise<{ build: IBuild; release: IRelease; }>; //# sourceMappingURL=start-build.d.ts.map