t-comm
Version:
专业、稳定、纯粹的工具库
21 lines (20 loc) • 605 B
TypeScript
export declare function reviewPipeline({ host, projectId, buildId, pipelineId, stepId, elementId, reviewUsers, status, suggest, params, accessToken, }: {
host: string;
projectId: string;
buildId: string;
pipelineId?: string;
elementId?: string;
stepId?: string;
reviewUsers?: string[] | string;
status?: 'PROCESS' | 'ABORT';
suggest?: string;
params?: Array<{
chineseName?: string;
desc?: string;
key: string;
required: boolean;
value?: string;
valueType: any;
}>;
accessToken?: string;
}): Promise<unknown>;