UNPKG

289 BTypeScriptView Raw
1import { ListrTask } from 'listr';
2import { DetailedError } from '../errors';
3export declare class Renderer {
4 private updateRenderer;
5 constructor(tasks: ListrTask, options: any);
6 render(): any;
7 end(err: Error & {
8 errors?: (Error | DetailedError)[];
9 }): void;
10}