Partie-2/node_modules/listr2/dist/interfaces/listr-error.interface.d.ts
Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

12 lines
374 B
TypeScript

/** The internal error handling mechanism.. */
export declare class ListrError extends Error {
message: string;
errors?: Error[];
context?: any;
constructor(message: string, errors?: Error[], context?: any);
}
/** The internal error handling mechanism for prompts only. */
export declare class PromptError extends Error {
constructor(message: string);
}