woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
22 lines (21 loc) • 954 B
TypeScript
import { ACPCategory } from "../../../Options/ControlPanel/ACPCategory";
import { ACPOption } from "../../../Options/ControlPanel/ACPOption";
import { ACPOptionInstruction } from "../../../PackageSystem/Instructions/Options/ACPOptionInstruction";
import { ACPOptionFileCompiler } from "../../Options/ACPOptionFileCompiler";
import { OptionInstructionCompiler } from "./OptionInstructionCompiler";
/**
* Provides the functionality to compile instructions which provide options for the control-panel.
*/
export declare class ACPOptionInstructionCompiler extends OptionInstructionCompiler<ACPOptionInstruction, ACPCategory, ACPOption> {
/**
* Initializes a new instance of the `ACPOptionInstructionCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: ACPOptionInstruction);
/**
* @inheritdoc
*/
protected readonly OptionFileCompiler: ACPOptionFileCompiler;
}