woltlab-compiler
Version:
A compiler for WoltLab-Package Archives and WoltLab-Package Components
22 lines (21 loc) • 931 B
TypeScript
import { UserCategory } from "../../../Options/UserPanel/UserCategory";
import { UserOption } from "../../../Options/UserPanel/UserOption";
import { UserOptionInstruction } from "../../../PackageSystem/Instructions/Options/UserOptionInstruction";
import { UserOptionFileCompiler } from "../../Options/UserOptionFileCompiler";
import { OptionInstructionCompiler } from "./OptionInstructionCompiler";
/**
* Provides the functionality to compile `UserOptionInstruction`s.
*/
export declare class UserOptionInstructionCompiler extends OptionInstructionCompiler<UserOptionInstruction, UserCategory, UserOption> {
/**
* Initializes a new instance of the `UserOptionInstructionCompiler` class.
*
* @param item
* The item to compile.
*/
constructor(item: UserOptionInstruction);
/**
* @inheritdoc
*/
protected readonly OptionFileCompiler: UserOptionFileCompiler;
}