Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import { Reporter } from "./Reporter"; import { LogLevel } from "../LogLevel"; import { LogEntry } from "../LogEntry"; import { RunContext } from "../../types/RunContext"; import { LoggerOptions } from "../../types/LoggerOptions"; export declare class NpmLogReporter implements Reporter { private options; readonly groupedEntries: Map<string, LogEntry[]>; constructor(options: { logLevel?: LogLevel; grouped?: boolean; npmLoggerOptions?: LoggerOptions; }); log(entry: LogEntry): any; private logInfoEntry; private logGenericEntry; private logTaskEntry; private logTaskEntryInGroup; hr(): void; summarize(context: RunContext): void; } |