@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
21 lines (20 loc) • 712 B
TypeScript
import { INode } from "../../NodeSystem/INode.js";
import { Category } from "../Category.js";
import { ICategoryOptions } from "../ICategoryOptions.js";
import { GroupOption } from "./GroupOption.js";
import { IGroupOptionOptions } from "./IGroupOptionOptions.js";
/**
* Represents an option-category for groups.
*/
export declare class GroupCategory extends Category<GroupOption, IGroupOptionOptions> {
/**
* Initializes a new instance of the {@link GroupCategory `GroupCategory`} class.
*
* @param node
* The node of the category.
*
* @param options
* The options of the category.
*/
constructor(node: INode, options: ICategoryOptions<IGroupOptionOptions>);
}