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