jenkins-cli-node
Version:
Jenkins command line tool
22 lines (21 loc) • 479 B
TypeScript
import { ParameterType } from ".";
export declare const getParametersByRadio: (config: {
name: string;
description: string;
choices: string[];
}) => {
type: ParameterType;
key: string;
value: string[];
description: string;
};
export declare const getParametersByCheckbox: (configs: {
name: string;
description: string;
value: string[];
}[]) => {
type: ParameterType;
key: string;
description: string;
value: string[];
}[];