poe-api-manager
Version:
poe.ninja and poe.watch API
27 lines (26 loc) • 896 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.FragmentModule = void 0;
const PoeNinja_1 = __importDefault(require("../../../../../AbstractClass/PoeNinja"));
/**
* Represents a module for handling fragments in the PoeNinja currency view.
*/
class FragmentModule extends PoeNinja_1.default {
league;
typeName;
/**
* Creates an instance of FragmentModule.
* @param league The league for which the module is created.
* @param typeName The type name of the module.
*/
constructor(league, typeName) {
const type = "Fragment";
super(league, typeName, type);
this.league = league;
this.typeName = typeName;
}
}
exports.FragmentModule = FragmentModule;