UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

10 lines (9 loc) 327 B
/** * * takes a command and removes the first keep lines from the output * * @param cmd the command, its stdout is then limited * @param removeFirstN how many lines to remove at the start of the command * @returns */ export declare const removeFirstLinesFromCommandOutput: (cmd: string, removeFirstN: number) => string;