poe-api-manager
Version:
poe.ninja and poe.watch API
22 lines (21 loc) • 723 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.InscribedModule = void 0;
const PoeWatch_1 = __importDefault(require("../../../../AbstractClass/PoeWatch"));
/**
* Subclass of PoeWatch for accessing inscribed data.
*/
class InscribedModule extends PoeWatch_1.default {
/**
* Creates a new instance of InscribedModule.
* @param league - The league from which the data will be fetched.
*/
constructor(league) {
const type = "inscribed";
super(league, type);
}
}
exports.InscribedModule = InscribedModule;