import APIClient from "../common/http"; import { Logger } from "../common/logger"; import { CLIService } from "../type"; export default class PipelineService extends CLIService { private readonly apiClient; logger: Logger; constructor(apiClient: APIClient, program: any); list(name: string, app: string, jenkins: "xmn" | "commonci", page?: number, size?: number): Promise; run(pipeline: any, params: any[]): Promise>; commandActionHandler(opts: any): Promise; handleShowDetail(pipeline: any): Promise; handleRunPipeline(pipe: any): Promise; }