runstorm - v0.6.2
    Preparing search index...

    Type Alias CommandLogParams

    All params required for logging a command output.

    type CommandLogParams = {
        command: Readonly<SelectFrom<Command, { color: true; name: true }>>;
        lastColors: Record<LogOutputType, string[]>;
        loggers: CommandLoggers;
        options: Readonly<Pick<RunCommandOptions, "disableColorPreserve">>;
        output: string;
        outputType: LogOutputType;
    }
    Index

    Properties

    command: Readonly<SelectFrom<Command, { color: true; name: true }>>
    lastColors: Record<LogOutputType, string[]>
    options: Readonly<Pick<RunCommandOptions, "disableColorPreserve">>
    output: string
    outputType: LogOutputType