rx-debugger
Version:
Easily debug rxjs pipes
20 lines • 744 B
TypeScript
import { Logger } from './logger';
import { PipeOperator } from '../common/interface';
import { Serializer } from '../serializer';
/**
* Gathers all the data, then prints them in a table as soon as the source errors or completes.
* If you expect to use this logger with mutable objects adopting a serializer is advised.
*/
export declare class TableLogger implements Logger {
serializer: Serializer;
channel: Console;
private readonly entries;
private reportVanillaOperators;
constructor(serializer: Serializer, channel: Console);
end(): PipeOperator;
log(name: string): PipeOperator;
start(): PipeOperator;
private entry;
private print;
}
//# sourceMappingURL=table-logger.d.ts.map