UNPKG

woltlab-compiler

Version:

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

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