UNPKG

jenkins-cli-node

Version:
10 lines (9 loc) 526 B
/** @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[]>;