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