@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
31 lines (30 loc) • 1.01 kB
TypeScript
import { GroupCategory } from "../../Options/Groups/GroupCategory.js";
import { GroupOption } from "../../Options/Groups/GroupOption.js";
import { GroupOptionInstruction } from "../../PackageSystem/Instructions/Options/GroupOptionInstruction.js";
import { OptionFileCompiler } from "./OptionFileCompiler.js";
/**
* Provides the functionality to compile group-option files.
*/
export declare class GroupOptionFileCompiler extends OptionFileCompiler<GroupOptionInstruction, GroupCategory, GroupOption> {
/**
* Initializes a new instance of the {@link GroupOptionFileCompiler `GroupOptionFileCompiler`} class.
*
* @param item
* The item to compile.
*/
constructor(item: GroupOptionInstruction);
/**
* @inheritdoc
*/
protected get SchemaLocation(): string;
/**
* @inheritdoc
*
* @param option
* The option to serialize.
*
* @returns
* The serialized option.
*/
protected CreateOption(option: GroupOption): Element;
}