bit-bin
Version:
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="apache" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"></a> <a href="https://github.com/teambit/bit/blob/master/CONTRIBUTING.md"><img alt="prs" src="https://img.shields.io/b
21 lines (20 loc) • 679 B
TypeScript
import { Logger } from '../logger';
export default class Reporter {
private logger;
private outputShouldBeSuppressed;
private statusLine;
constructor(logger: Logger);
suppressOutput(): void;
setStatusText(text: string): void;
title(...messages: any[]): void;
info(componentId: any, messages: any): void;
warn(componentId: any, messages: any): void;
error(componentId: any, messages: any): void;
debug(componentId: any, messages: any): void;
subscribe(extensionName: any): void;
subscribeAll(): void;
unsubscribe(extensionName: any): void;
end(): void;
private loggerCallback;
private get shouldWriteOutput();
}