UNPKG

woltlab-compiler

Version:

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

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