UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

21 lines (20 loc) 701 B
import { INode } from "../../NodeSystem/INode.js"; import { Category } from "../Category.js"; import { ICategoryOptions } from "../ICategoryOptions.js"; import { IUserOptionOptions } from "./IUserOptionOptions.js"; import { UserOption } from "./UserOption.js"; /** * Represents an option-category for users. */ export declare class UserCategory extends Category<UserOption, IUserOptionOptions> { /** * Initializes a new instance of the {@link UserCategory `UserCategory`} class. * * @param node * The node of the category. * * @param options * The options of the category. */ constructor(node: INode, options: ICategoryOptions<IUserOptionOptions>); }