woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
25 lines (24 loc) • 868 B
TypeScript
import { ACPCategory } from "../../Options/ControlPanel/ACPCategory";
import { ACPOption } from "../../Options/ControlPanel/ACPOption";
import { ACPOptionInstruction } from "../../PackageSystem/Instructions/Options/ACPOptionInstruction";
import { OptionFileCompiler } from "./OptionFileCompiler";
/**
* Provides the functionality to compile acp-option files.
*/
export declare class ACPOptionFileCompiler extends OptionFileCompiler<ACPOptionInstruction, ACPCategory, ACPOption> {
/**
* Initializes a new instance of the `ACPOptionFileCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: ACPOptionInstruction);
/**
* @inheritdoc
*/
protected readonly SchemaLocation: string;
/**
* @inheritdoc
*/
protected CreateOption(option: ACPOption): Element;
}