starrail-manager
Version:
The StarRail Manager is a Node.js wrapper for the MiHoMo API and StarRail Data used in Honkai: StarRail.\ **This is not an official Honkai: StarRail project.**
13 lines • 359 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ApiError = void 0;
class ApiError extends Error {
constructor(message, status) {
super(message);
this.status = status;
this.name = "ApiError";
this.status = status;
}
}
exports.ApiError = ApiError;
//# sourceMappingURL=ApiError.js.map