UNPKG

poe-api-manager

Version:
22 lines (21 loc) 716 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.CurrencyModule = void 0; const PoeWatch_1 = __importDefault(require("../../../../AbstractClass/PoeWatch")); /** * Subclass of PoeWatch for accessing currency data. */ class CurrencyModule extends PoeWatch_1.default { /** * Creates a new instance of CurrencyModule. * @param league - The league from which the data will be fetched. */ constructor(league) { const type = "currency"; super(league, type); } } exports.CurrencyModule = CurrencyModule;