UNPKG

510 BTypeScriptView Raw
1import { ListrTask } from 'listr';
2import { DetailedError } from '@graphql-codegen/plugin-helpers';
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 details?: string;
10 }): void;
11}
12export declare class ErrorRenderer {
13 private tasks;
14 constructor(tasks: any, _options: any);
15 render(): void;
16 static get nonTTY(): boolean;
17 end(): void;
18}