You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
604 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PromptError = exports.ListrError = void 0;
class ListrError extends Error {
constructor(message, errors, context) {
super(message);
this.message = message;
this.errors = errors;
this.context = context;
this.name = 'ListrError';
}
}
exports.ListrError = ListrError;
class PromptError extends Error {
constructor(message) {
super(message);
this.name = 'PromptError';
}
}
exports.PromptError = PromptError;
//# sourceMappingURL=listr.interface.js.map