UNPKG

woltlab-compiler

Version:

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

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