UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

19 lines 609 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Category_1 = require("../Category"); const UserOption_1 = require("./UserOption"); /** * Represents an option-category for users. */ class UserCategory extends Category_1.Category { /** * Initializes a new instance of the `UserCategory` class. */ constructor(node, options) { super(node, options, (category, opts) => { return new UserOption_1.UserOption(category, opts); }); } } exports.UserCategory = UserCategory; //# sourceMappingURL=UserCategory.js.map