shell bypass 403
GrazzMean Shell
: /home/homesquasz/devprod/Directeur/node_modules/concurrently/dist/src/flow-control/ [ drwx---r-x ]
import { CloseEvent, Command } from '../command';
import { Logger } from '../logger';
import { FlowController } from './flow-controller';
interface TimingInfo {
name: string;
duration: string;
'exit code': string | number;
killed: boolean;
command: string;
}
/**
* Logs timing information about commands as they start/stop and then a summary when all commands finish.
*/
export declare class LogTimings implements FlowController {
static mapCloseEventToTimingInfo({ command, timings, killed, exitCode }: CloseEvent): TimingInfo;
private readonly logger?;
private readonly timestampFormat;
constructor({ logger, timestampFormat }: {
logger?: Logger;
timestampFormat?: string;
});
printExitInfoTimingTable(exitInfos: CloseEvent[]): CloseEvent[];
handle(commands: Command[]): {
commands: Command[];
};
}
export {};