UNPKG

337 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}