woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
19 lines • 619 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const Category_1 = require("../Category");
const GroupOption_1 = require("./GroupOption");
/**
* Represents an option-category for groups.
*/
class GroupCategory extends Category_1.Category {
/**
* Initializes a new instance of the `GroupCategory` class.
*/
constructor(node, options) {
super(node, options, (category, opts) => {
return new GroupOption_1.GroupOption(category, opts);
});
}
}
exports.GroupCategory = GroupCategory;
//# sourceMappingURL=GroupCategory.js.map