jenkins-cli-node
Version:
Jenkins command line tool
10 lines (9 loc) • 526 B
TypeScript
/** @format */
export declare const resolve: (p: any) => string;
export declare const alert: (title: string, message: string, clickFun?: (() => void) | undefined) => void;
export declare const sleep: (timeout: any) => Promise<unknown>;
export declare const printSuccess: (msg: any) => void;
export declare const printInfo: (msg: any) => void;
export declare const printError: (msg: string) => void;
export declare const loadYaml: (path: string) => any;
export declare const getBranchByRemote: (url: any) => Promise<string[]>;